home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / web / doc / webman.tex (.txt) < prev   
LaTeX Document  |  1992-09-23  |  89KB  |  1,509 lines

  1. % WEB user manual -- last updated by D E Knuth on 4 Dec 89
  2. \input webmac
  3. \parskip 0pt plus 1pt
  4. \def\RA{\char'31 } % right arrow
  5. \def\hang{\hangindent 4em\ignorespaces}
  6. \font\ninerm=cmr9
  7. \font\ninett=cmtt9
  8. \font\eighttt=cmtt8
  9. \let\mc=\ninerm % medium caps for names like SAIL
  10. \def\PASCAL{Pascal}
  11. \font\quoterm=cmssq8
  12. \font\quoteit=cmssqi8
  13. \def\pb{\.{|...|}}
  14. \def\lpile{\def\cr{\hfill\endline}\matrix} % I only use \lpile by itself
  15. \outer\def\section #1.{\penalty-50\vskip 12pt plus 3pt minus 3pt
  16.   \noindent{\bf #1.}\quad\ignorespaces}
  17. \def\lheader{\mainfont\the\pageno\hfill\sc\runninghead\hfill}
  18. \def\rheader{\hfill\sc\runninghead\hfill\mainfont\the\pageno}
  19. \def\runninghead{{\tentt WEB} USER MANUAL}
  20. % This verbatim mode assumes that no ? appears in the text being copied.
  21. \def\verbatim{\begingroup
  22.   \def\do##1{\catcode`##1=12 } \dospecials
  23.   \parskip 0pt \parindent 0pt
  24.   \catcode`\ =13 \catcode`\^^M=13
  25.   \tt \catcode`\?=0 \verbatimdefs \verbatimgobble}
  26. {\catcode`\^^M=13{\catcode`\ =13\gdef\verbatimdefs{\def^^M{\ \par}\let =\ }} %
  27.   \gdef\verbatimgobble#1^^M{}}
  28. \centerline{\titlefont The {\ttitlefont WEB} System
  29.   of Structured Documentation}
  30. \vskip 15pt plus 3pt minus 3pt
  31. \noindent This memo describes how to write programs in the
  32. \.{WEB} language; and it also includes the full \.{WEB} documentation for
  33. \.{WEAVE} and \.{TANGLE}, the programs that read \.{WEB} input and produce
  34. \TeX\ and \PASCAL\ output, respectively. The philosophy behind \.{WEB} is
  35. that an experienced system programmer, who wants to provide the best
  36. possible documentation of software products, needs two things
  37. simultaneously:  a language like \TeX\ for formatting, and a language like
  38. \PASCAL\ for programming. Neither type of language can provide the best
  39. documentation by itself. But when both are appropriately combined, we
  40. obtain a system that is much more useful than either language separately.
  41. The structure of a software program may be thought of as a ``web'' that is
  42. made up of many interconnected pieces. To document such a program, we want
  43. to explain each individual part of the web and how it relates to its
  44. neighbors. The typographic tools provided by \TeX\ give us an opportunity
  45. to explain the local structure of each part by making that structure
  46. visible, and the programming tools provided by \PASCAL\ make it possible
  47. for us to specify the algorithms formally and unambiguously. By combining
  48. the two, we can develop a style of programming that maximizes our ability
  49. to perceive the structure of a complex piece of software, and at the same
  50. time the documented programs can be mechanically translated into a working
  51. software system that matches the documentation.
  52. Since \.{WEB} is an experimental system developed for internal use within
  53. the \TeX\ project at Stanford, this report is rather terse, and it assumes
  54. that the reader is an experienced programmer who is highly motivated to
  55. read a detailed description of \.{WEB}'s rules. Furthermore, even if a
  56. less terse manual were to be written, the reader would have to be warned
  57. in advance that \.{WEB} is not for beginners and it never will be: The
  58. user of \.{WEB} must be familiar with both \TeX\ and \PASCAL. When one
  59. writes a \.{WEB} description of a software system, it is possible to make
  60. mistakes by breaking the rules of \.{WEB} and/or the rules of \TeX\ and/or
  61. the rules of \PASCAL. In practice, all three types of errors will occur,
  62. and you will get different error messages from the different language
  63. processors. In compensation for the sophisticated expertise needed to cope
  64. with such a variety of languages, however, experience has shown that
  65. reliable software can be created quite rapidly by working entirely in
  66. \.{WEB} from the beginning; and the documentation of such programs seems
  67. to be better than the documentation obtained by any other known method.
  68. Thus, \.{WEB} users need to be highly qualified, but they can get some
  69. satisfaction and perhaps even a special feeling of accomplishment when
  70. they have successfully created a software system with this method.
  71. To use \.{WEB}, you prepare a file called \.{COB.WEB} (say), and then you
  72. apply a system program called \.{WEAVE} to this file, obtaining an output
  73. file called \.{COB.TEX}.  When \TeX\ processes \.{COB.TEX}, your output
  74. will be a ``pretty printed'' version of \.{COB.WEB} that takes appropriate
  75. care of typographic details like page layout and the use of indentation,
  76. italics, boldface, etc.; this output will contain extensive cross-index
  77. information that is gathered automatically. You can also submit the same
  78. file \.{COB.WEB} to another system program called \.{TANGLE}, which will
  79. produce a file \.{COB.PAS} that contains the \PASCAL\ code of your \.{COB}
  80. program. The \PASCAL\ compiler will convert \.{COB.PAS} into
  81. machine-language instructions corresponding to the algorithms that were so
  82. nicely formatted by \.{WEAVE} and \TeX. Finally, you can (and should)
  83. delete the files \.{COB.TEX} and \.{COB.PAS}, because \.{COB.WEB} contains
  84. the definitive source code. Examples of the behavior of \.{WEAVE} and
  85. \.{TANGLE} are appended to this manual.
  86. Besides providing a documentation tool, \.{WEB} enhances the \PASCAL\
  87. language by providing a rudimentary macro capability together with the
  88. ability to permute pieces of the program text, so that a large system can
  89. be understood entirely in terms of small modules and their local
  90. interrelationships.  The \.{TANGLE} program is so named because it takes a
  91. given web and moves the modules from their web structure into the order
  92. required by \PASCAL; the advantage of programming in \.{WEB} is that the
  93. algorithms can be expressed in ``untangled'' form, with each module
  94. explained separately.  The \.{WEAVE} program is so named because it takes
  95. a given web and intertwines the \TeX\ and \PASCAL\ portions contained in
  96. each module, then it knits the whole fabric into a structured document.
  97. (Get it? Wow.)  Perhaps there is some deep connection here with the fact
  98. that the German word for ``weave'' is ``{\it web\/}'', and the
  99. corresponding Latin imperative is ``{\it texe\/}''!
  100. It is impossible to list all of the related work that has influenced the
  101. design of \.{WEB}, but the key contributions should be mentioned
  102. here.\quad (1)~Myrtle Kellington, as executive editor for ACM
  103. publications, developed excellent typographic standards for the
  104. typesetting of Algol programs during the 1960s, based on the original
  105. designs of Peter Naur; the subtlety and quality of this influential work
  106. can be appreciated only by people who have seen what happens when other
  107. printers try to typeset Algol without the advice of ACM's copy
  108. editors.\quad(2)~Bill McKeeman introduced a program intended to automate
  109. some of this task [Algorithm 268, ``Algol~60 reference language editor,''
  110. {\sl CACM \bf8} (1965), 667--668]; and a considerable flowering of such
  111. programs has occurred in recent years [see especially Derek Oppen,
  112. ``Prettyprinting,'' {\sl ACM TOPLAS \bf2} (1980), 465--483; G.~A. Rose and
  113. J. Welsh, ``Formatted programming languages,'' {\sl SOFTWARE Practice
  114. \char`\&\ Exper.\ \bf11} (1981), 651--669].\quad(3)~The top-down style of
  115. exposition encouraged by \.{WEB} was of course chiefly influenced by Edsger
  116. Dijkstra's essays on structured programming in the late 1960s. The less
  117. well known work of Pierre-Arnoul de Marneffe [``Holon programming: A
  118. survey,'' Univ.\ de Liege, Service Informatique, Liege, Belgium, 1973; 135
  119. pp.\null] also had a significant influence on the author as \.{WEB} was
  120. being formulated.\quad(4)~Edwin Towster has proposed a similar style of
  121. documentation in which the programmer is supposed to specify the relevant
  122. data structure environment in the name of each submodule [``A convention
  123. for explicit declaration of environments and top-down refinement of
  124. data,'' {\sl IEEE Trans.\ on Software Eng.\ \bf SE--5} (1979), 374--386];
  125. this requirement seems to make the documentation a bit too verbose,
  126. although experience with \.{WEB} has shown that any unusual control
  127. structure or data structure should definitely be incorporated into the
  128. module names on psychological grounds.\quad(5)~Discussions with Luis
  129. Trabb~Pardo in the spring of 1979 were extremely helpful for setting up a
  130. prototype version of \.{WEB} that was called \.{DOC}.\quad (6)~Ignacio
  131. Zabala's extensive experience with \.{DOC}, in which he created a full
  132. implementation of \TeX\ in \PASCAL\ that was successfully transported to
  133. many different computers, was of immense value while \.{WEB} was taking
  134. its present form.\quad(7)~David~R. Fuchs made several crucial suggestions
  135. about how to make \.{WEB} more portable; he and Arthur~L. Samuel
  136. coordinated the initial installations of \.{WEB} on dozens of computer
  137. systems, making changes to the code so that it would be acceptable to
  138. a wide variety of \PASCAL\ compilers.\quad(8)~The name \.{WEB} itself
  139. was chosen in honor of my wife's mother, Wilda Ernestine Bates.
  140. The appendices to this report contain complete \.{WEB} programs for the
  141. \.{WEAVE} and \.{TANGLE} processors. A study of these examples, together
  142. with an attempt to write \.{WEB} programs by yourself, is the best way
  143. to understand why \.{WEB} has come to be like it is.
  144. \section General rules.
  145. A \.{WEB} file is a long string of text that has been divided into
  146. individual lines. The exact line boundaries are not terribly crucial, and
  147. a programmer can pretty much chop up the \.{WEB} file in whatever way seems
  148. to look best as the file is being edited; but string constants and control
  149. texts must end on the same line on which they begin, since this convention
  150. helps to keep errors from propagating.  The end of a line means
  151. the same thing as a blank space.
  152. Two kinds of material go into \.{WEB} files: \TeX\ text and \PASCAL\ text.
  153. A programmer writing in \.{WEB} should be thinking both of the
  154. documentation and of the \PASCAL\ program that he or she is creating;
  155. i.e., the programmer should be instinctively aware of the different
  156. actions that \.{WEAVE} and \.{TANGLE} will perform on the \.{WEB} file.
  157. \TeX\ text is essentially copied without change by \.{WEAVE}, and it is
  158. entirely deleted by \.{TANGLE}, since the \TeX\ text is ``pure
  159. documentation.'' \PASCAL\ text, on the other hand, is formatted by
  160. \.{WEAVE} and it is shuffled around by \.{TANGLE}, according to rules that
  161. will become clear later. For now the important point to keep in mind is
  162. that there are two kinds of text. Writing \.{WEB} programs is something
  163. like writing \TeX\ documents, but with an additional ``\PASCAL\ mode''
  164. that is added to \TeX's horizontal mode, vertical mode, and math mode.
  165. A \.{WEB} file is built up from units called {\sl modules\/} that are more
  166. or less self-contained.  Each module has three parts:
  167. \yskip\item{1)} A \TeX\ part, containing explanatory material about what
  168. is going on in the module.
  169. \item{2)} A definition part, containing macro definitions that serve as
  170. abbreviations for \PASCAL\ constructions that would be less comprehensible
  171. if written out in full each time.
  172. \item{3)} A \PASCAL\ part, containing a piece of the program that
  173. \.{TANGLE} will produce. This \PASCAL\ code should ideally be about a
  174. dozen lines long, so that it is easily comprehensible as a unit and so
  175. that its structure is readily perceived.
  176. \yskip\noindent The three parts of each module must appear in this order;
  177. i.e., the \TeX\ commentary must come first, then the definitions, and
  178. finally the \PASCAL\ code. Any of the parts may be empty.
  179. \eject % page break inserted Dec 88
  180. A module begins with the pair of symbols `\.{@\ }' or `\.{@*}', where
  181. `\.{\ }' denotes a blank space. A module ends
  182. at the beginning of the next module (i.e., at the next
  183. `\.{@\ }' or `\.{@*}'), or at the end of the file, whichever comes first.
  184. The \.{WEB} file may also contain material that is not part of any module
  185. at all, namely the text (if any) that occurs before the first module.
  186. Such text is said to be ``in limbo''; it is ignored by \.{TANGLE}
  187. and copied essentially verbatim by \.{WEAVE}, so its function is to
  188. provide any additional formatting instructions that may be desired in the
  189. \TeX\ output. Indeed, it is customary to begin a \.{WEB} file with
  190. \TeX\ code in limbo that loads special fonts, defines special macros,
  191. changes the page sizes, and/or produces a title page.
  192. Modules are numbered consecutively, starting with 1; these numbers appear
  193. at the beginning of each module of the \TeX\ documentation, and they appear
  194. as bracketed comments at the beginning of the code generated by that
  195. module in the \PASCAL\ program.
  196. Fortunately, you never mention these numbers yourself when you are writing
  197. in \.{WEB}. You just say `\.{@\ }' or `\.{@*}' at the beginning of each
  198. new module, and the numbers are supplied automatically by \.{WEAVE} and
  199. \.{TANGLE}. As far as you are concerned, a module has a
  200. {\sl name\/} instead of a number; such a name is specified by writing
  201. `\.{@<}' followed by \TeX\ text followed by `\.{@>}'. When \.{WEAVE}
  202. outputs a module name, it replaces the `\.{@<}' and `\.{@>}' by
  203. angle brackets and inserts the module number in small type. Thus, when you
  204. read the output of \.{WEAVE} it is easy to locate any module that is
  205. referred to in another module.
  206. For expository purposes, a module name should be a good description of the
  207. contents of that module; i.e., it should stand for the abstraction
  208. represented by the module. Then the module can be ``plugged into'' one or
  209. more other modules in such a way
  210. that unimportant details of its inner workings
  211. are suppressed.  A module name therefore ought to be long enough to convey
  212. the necessary meaning. Unfortunately, however, it is laborious to type
  213. such long names over and over again, and it is also difficult to specify a
  214. long name twice in exactly the same way so that \.{WEAVE} and \.{TANGLE}
  215. will be able to match the names to the modules. To ameliorate this difficulty,
  216. \.{WEAVE} and \.{TANGLE} let you abbreviate a module name
  217. after its first appearance in the \.{WEB} file; you can type simply
  218. `\.{@<$\alpha$...@>}', where $\alpha$ is any string that is a prefix of
  219. exactly one module name appearing in the file. For example, `\.{@<Clear
  220. the arrays@>}' can be abbreviated to `\.{@<Clear...@>}' if no other module
  221. name begins with the five letters `\.{Clear}'. Module names must otherwise
  222. match character for character, except that consecutive blank spaces and/or
  223. tab marks are treated as equivalent to single spaces, and such spaces are
  224. deleted at the beginning and end of the name. Thus, `\.{@< Clear { }the
  225. arrays @>}' will also match the name in the previous example.
  226. We have said that a module begins with `\.{@\ }' or `\.{@*}', but we
  227. didn't say how it gets divided up into a \TeX\ part, a definition part,
  228. and a \PASCAL\ part. The definition part begins with the first appearance
  229. of `\.{@d}' or `\.{@f}' in the module, and the \PASCAL\ part begins with
  230. the first appearance of `\.{@p}' or `\.{@<}'. The latter option `\.{@<}'
  231. stands for the beginning of a module name, which is the name of the module
  232. itself. An equals sign (\.=) must follow the `\.{@>}' at the end of this
  233. module name; you are saying, in effect, that the module name stands for
  234. the \PASCAL\ text that follows, so you say `$\langle\,$module
  235. name$\,\rangle=\null$\PASCAL\ text'. Alternatively, if the \PASCAL\ part
  236. begins with `\.{@p}' instead of a module name, the current module is said
  237. to be {\sl unnamed}. Note that module names cannot appear in the
  238. definition part of a module, because the first `\.{@<}' in a module
  239. signals the beginning of its \PASCAL\ part.  But any number of module names
  240. might appear in the \PASCAL\ part, once it has started.
  241. The general idea of \.{TANGLE} is to make a \PASCAL\ program out of these
  242. modules in the following way: First all the \PASCAL\ parts of unnamed
  243. modules are copied down, in order; this constitutes the initial
  244. approximation $T_0$ to the text of the program. (There should be at least
  245. one unnamed module, otherwise there will be no program.) Then all module
  246. names that appear in the initial text $T_0$ are replaced by the \PASCAL\
  247. parts of the corresponding modules, and this substitution process
  248. continues until no module names remain. Then all defined macros are
  249. replaced by their equivalents, according to certain rules that are
  250. explained later. The resulting \PASCAL\ code is ``sanitized'' so that it
  251. will be acceptable to an average garden-variety \PASCAL\ compiler; i.e.,
  252. lowercase letters are converted to uppercase, long identifiers are
  253. chopped, and the lines of the output file are constrained to be at most 72
  254. characters long.  All comments will have been removed from this \PASCAL\
  255. program except for the meta-comments delimited by `\.{@\{}' and
  256. `\.{@\}}', as explained below, and except for the module-number comments
  257. that point to the source location where each piece of the program text
  258. originated in the \.{WEB} file.
  259. If the same name has been given to more than one module, the \PASCAL\ text
  260. for that name is obtained by putting together all of the \PASCAL\ parts in
  261. the corresponding modules. This feature is useful, for example, in a
  262. module named `Global variables in the outer block', since one can then
  263. declare global variables in whatever modules those variables are
  264. introduced. When several modules have the same name, \.{WEAVE} assigns the
  265. first module number as the number corresponding to that name, and it
  266. inserts a note at the bottom of that module telling the reader to `See
  267. also sections so-and-so'; this footnote gives the numbers of all the other
  268. modules having the same name as the present one. The \PASCAL\ text
  269. corresponding to a module is usually formatted by \.{WEAVE} so that the
  270. output has an equivalence sign in place of the equals sign in the \.{WEB}
  271. file; i.e., the output says `$\langle\,$module
  272. name$\,\rangle\equiv\null$\PASCAL\ text'. However, in the case of the second
  273. and subsequent appearances of a module with the same name, this `$\equiv$'
  274. sign is replaced by `$\mathrel+\equiv$', as an indication that the \PASCAL\
  275. text that follows is being appended to the \PASCAL\ text of another
  276. module.
  277. The general idea of \.{WEAVE} is to make a \.{TEX} file from the \.{WEB}
  278. file in the following way: The first line of the \.{TEX} file will be
  279. `\.{\\input webmac}'; this will cause \TeX\ to read in the macros that
  280. define \.{WEB}'s documentation conventions. The next lines of the file
  281. will be copied from whatever \TeX\ text is in limbo before the first
  282. module.  Then comes the output for each module in turn, possibly
  283. interspersed with end-of-page marks.  Finally, \.{WEAVE} will generate a
  284. cross-reference index that lists each module number in which each \PASCAL\
  285. identifier appears, and it will also generate an alphabetized list
  286. of the module names, as well as a table of contents that
  287. shows the page and module numbers for each ``starred'' module.
  288. What is a ``starred'' module, you ask? A module that begins with `\.{@*}'
  289. instead of `\.{@\ }' is slightly special in that it denotes a new major
  290. group of modules. The `\.{@*}' should be followed by the title of this
  291. group, followed by a period. Such modules will always start on a new page
  292. in the \TeX\ output, and the group title will appear as a running headline
  293. on all subsequent pages until the next starred module. The title will also
  294. appear in the table of contents, and in boldface type at the beginning of
  295. its module. Caution:  Do not use \TeX\ control sequences in such titles,
  296. unless you know that the \.{webmac} macros will do the right thing with
  297. them. The reason is that these titles are converted to uppercase when
  298. they appear as running heads, and they are converted to boldface when they
  299. appear at the beginning of their modules, and they are also written out to
  300. a table-of-contents file used for temporary storage while \TeX\ is
  301. working; whatever control sequences you use must be meaningful in all
  302. three of these modes.
  303. The \TeX\ output produced by \.{WEAVE} for each module consists of
  304. the following: First comes the module number (e.g., `\.{\\M123.}'
  305. at the beginning of module 123, except that `\.{\\N}' appears in place of
  306. `\.{\\M}' at the beginning of a starred module). Then comes the
  307. \TeX\ part of the module, copied almost verbatim except as noted
  308. below. Then comes the definition part and the \PASCAL\ part, formatted
  309. so that there will be a little extra space between them if both are
  310. nonempty. The definition and \PASCAL\ parts are obtained by inserting
  311. a bunch of funny looking \TeX\ macros into the \PASCAL\ program; these
  312. macros handle typographic details about fonts and proper math spacing,
  313. as well as line breaks and indentation.
  314. When you are typing \TeX\ text, you will probably want to make frequent
  315. reference to variables and other quantities in your \PASCAL\ code, and you
  316. will want those variables to have the same typographic treatment
  317. when they appear in your text as when they appear in your
  318. program.  Therefore the \.{WEB} language allows you to get the effect of
  319. \PASCAL\ editing within \TeX\ text, if you place `\.|' marks before and
  320. after the \PASCAL\ material. For example, suppose you want to say something
  321. like this:
  322. $$\hbox{The characters are placed into \\{buffer}, which is a
  323. \&{packed} \&{array} $[1\to\|n]$ \&{of} \\{char}.}$$
  324. The \TeX\ text would look like this in your \.{WEB} file:
  325. $$\.{The characters are placed into |buffer|, which is a |packed
  326. array [1..n] of char|.}$$
  327. And \.{WEAVE} translates this into something you are glad you didn't have
  328. to type:
  329. $$\lpile{\.{The characters are placed into \\\\\{buffer\},}\cr
  330.   \.{which is a \\\&\{packed\}{ }\\\&\{array\}{ }\$
  331.     [1\\to\\|n]\${ }\\\&\{of\}{ }\\\\\{char\}.}\cr}$$
  332. Incidentally, the cross-reference index that \.{WEAVE} would make, in
  333. the presence of a comment like this, would include
  334. the current module number as one of the index entries for \\{buffer}
  335. \vadjust{\eject}% page break inserted Dec 88
  336. and \\{char}, even though \\{buffer} and \\{char}
  337. might not appear in the \PASCAL\ part of
  338. this module. Thus, the index covers references to identifiers in
  339. the explanatory comments as well as in the program itself; you will
  340. soon learn to appreciate this feature. However, the identifiers
  341. \&{packed} and \&{array} and \|n\ and \&{of\/} would not be indexed,
  342. because \.{WEAVE} does not make index entries for reserved words or
  343. single-letter identifiers. Such identifiers are felt to be so ubiquitous
  344. that it would be pointless to mention every place where they occur.
  345. Speaking of identifiers, the author of \.{WEB} thinks that
  346. \\{IdentifiersSeveralWordsLong} look terribly ugly when they mix
  347. uppercase and lowercase letters. He recommends that
  348. \\{identifiers\_several\_words\_long} be written with underline characters
  349. to get a much better effect. The actual identifiers sent to the \PASCAL\
  350. compiler by \.{TANGLE} will have such underlines removed, and \.{TANGLE}
  351. will check to make sure that two different identifiers do not become
  352. identical when this happens. (In fact, \.{TANGLE} even checks that
  353. the first seven characters of identifiers are unique, when lowercase
  354. letters have been converted to uppercase; the number seven in this
  355. constraint is more strict than \PASCAL's eight, and it can
  356. be changed if desired.) The \.{WEAVE} processor will properly
  357. alphabetize identifiers that have embedded underlines
  358. when it makes the index.
  359. Although a module begins with \TeX\ text and ends with \PASCAL\ text, we
  360. have noted that the dividing line isn't sharp, since \PASCAL\ text can be
  361. included in \TeX\ text if it is enclosed in `\pb'.  Conversely, \TeX\ text
  362. also appears frequently within \PASCAL\ text, because everything in
  363. comments (i.e., between left and right braces) is treated as \TeX\ text.
  364. Furthermore, a module name consists of \TeX\ text; thus, a \.{WEB} file
  365. typically involves constructions like `\.{if} \.x \.= \.0 \.{then}
  366. \.{@<Empty} \.{the} \.{|buffer|} \.{array@>}' where we go back and forth
  367. between \PASCAL\ and \TeX\ conventions in a natural way.
  368. \section Macros.
  369. A \.{WEB} programmer can define three kinds of macros to make the programs
  370. shorter and more readable:
  371. \yskip\hang`\.{@d} \\{identifier} \.= \\{constant}' defines a {\sl numeric\/}
  372. macro, allowing \.{TANGLE} to do rudimentary arithmetic.
  373. \yskip\hang`\.{@d} \\{identifier} \.{==} \PASCAL\ text' defines a {\sl
  374. simple\/} macro, where the identifier will be replaced by the \PASCAL\ text
  375. when \.{TANGLE} produces its output.
  376. \yskip\hang`\.{@d} \\{identifier}\.{(\#) ==} \PASCAL\ text' defines a
  377. {\sl parametric\/} macro, where the identifier will be replaced by the \PASCAL\
  378. text and where occurrences of \.{\#} in that \PASCAL\ text will be
  379. replaced by an argument.
  380. \yskip\noindent In all three cases, the identifier must have length greater
  381. than one; it must not be a single letter.
  382. Numeric macros are subject to the following restrictions:\quad
  383. (1)~The identifier must
  384. be making its first appearance in the \.{WEB} file;
  385. a numeric macro must be defined before it is used.\quad
  386. (2)~The right-hand side of the numeric definition must be made entirely from
  387. integer constants, numeric macros, preprocessed strings (see below), and
  388. plus~signs or minus signs.  No other operations or symbols are allowed,
  389. not even parentheses, except that \PASCAL-like comments (enclosed in
  390. braces) can appear. Indeed, comments are recommended, since it is usually
  391. wise to give a brief explanation of the significance of each identifier as
  392. it is defined.\quad
  393. (3)~The numeric value must be less than $2^{15}=32768$ in absolute value.
  394. (For larger values, you can use `\.{==}' in place of~`\.=', thus making use
  395. of a simple macro instead of a numeric one. Note, however, that simple
  396. macros sometimes have a different effect. For example, consider the three
  397. definitions `\.{@d n1=2 @d n2=2+n1 @d n3==2+n1}'; then `\.{x-n2}' will
  398. expand into `\.{x-4}', while `\.{x-n3}' will expand into `\.{x-2+2}' which
  399. is quite different! It is wise to include parentheses in non-numeric
  400. macros, e.g., `\.{@d n3==(2+n1)}', to avoid such errors.)
  401. When constants are connected by plus signs or minus
  402. signs in a \PASCAL\ program, \.{TANGLE} does the arithmetic before putting
  403. the constant into the output file. Therefore it is permissible to say, for
  404. example, `\&{array} $[0\,.\,.\,\\{size}-1]$' if \\{size} has been declared
  405. as a macro; note that \PASCAL\ doesn't allow this kind of compile-time
  406. arithmetic if \\{size} is a \&{constant} quantity in the program. Another
  407. use of \.{TANGLE}'s arithmetic is to make \&{case} statement labels such
  408. as `$\\{flag}+1$' legitimate. Of course, it is improper to change \.{2+2}
  409. into \.4 without looking at the surrounding context; many counterexamples
  410. exist, such as the phrases `\.{-2+2}', `\.{x/2+2}', and `\.{2+2E5}'.  The
  411. program for \.{TANGLE}, in the appendix, gives precise details about this
  412. conversion, which \.{TANGLE} does only when it is safe.
  413. The right-hand sides of simple and parametric macros
  414. are required to have balanced parentheses, and the \PASCAL\ texts of
  415. modules must have balanced parentheses too. Therefore when the argument
  416. to a para\-metric macro appears in parentheses, both parentheses
  417. will belong to the same \PASCAL\ text.
  418. The appendices to this report contain hundreds of typical examples of the
  419. usefulness of \.{WEB} macros, so it is not necessary to dwell on the
  420. subject here. However, the reader should know that \.{WEB}'s apparently
  421. primitive macro capabilities can actually do a lot of rather surprising
  422. things. Here is a construction that sheds further light on what is
  423. possible: After making the definitions
  424. $$\catcode`\#=12
  425. \lpile{\.{@d two\_cases(#)==case j of 1:#(1); 2:#(2); end}\cr
  426. \.{@d reset\_file(#)==reset(input\_file@\&#)}\cr}$$
  427. one can write `\.{two\_cases(reset\_file)}' and the resulting \PASCAL\
  428. output will be
  429. $$\.{case j of 1:reset(input\_file1); 2:reset(input\_file2); end}$$
  430. (but in uppercase letters and with \.\_'s removed).
  431. The `\.{@\&}' operation used here joins together two adjacent tokens
  432. into a single token, as explained later; otherwise the \PASCAL\ file would
  433. contain a space between \.{input\_file} and the digit that followed it.
  434. This trick can be used to provide the effect of an array of files, if you
  435. are unfortunate enough to have a \PASCAL\ compiler that doesn't allow such
  436. arrays.  Incidentally, the cross-reference index made by \.{WEAVE} from
  437. this example would contain the identifier \\{input\_file} but it would not
  438. contain \\{input\_file1} or \\{input\_file2}. Furthermore, \.{TANGLE}
  439. would not catch the error that \.{INPUTFILE1} and \.{INPUTFILE2} both
  440. begin with the same nine letters; one should be more careful when using
  441. `\.{@\&}'! But such aspects of the construction in this trick are
  442. peripheral to our main point, which is that a parametric macro name without
  443. arguments can be used as an argument to another parametric macro.
  444. Although \.{WEB}'s macros are allowed to have at most one parameter, the
  445. following example shows that this is not as much of a restriction as it
  446. may seem at first. Let \\{amac} and \\{bmac} be any parametric macros, and
  447. suppose that we want to get the effect of
  448. $$\catcode`\#=12
  449. \.{@d cmac(#1,#2) == amac(#1) bmac(#2)}$$
  450. which \.{WEB} doesn't permit. The solution is to make the definitions
  451. $$\catcode`\#=12
  452. \lpile{\.{@d cmac(#) == amac(#) dmac}\cr
  453. \.{@d dmac(#) == bmac(#)}\cr}$$
  454. and then to say `\.{cmac(x)(y)}'.
  455. There is one restriction in the generality of \.{WEB}'s parametric
  456. macros, however: the argument to a para\-metric macro must not come from
  457. the expansion of a macro that has not already been ``started.'' For
  458. example, here is one of the things \.{WEB} cannot handle:
  459. $$\catcode`\#=12
  460. \lpile{\.{@d arg == (p)}\cr
  461. \.{@d identity(#) == #}\cr
  462. \.{@p identity arg}\cr}$$
  463. In this case \.{TANGLE} will complain that the \.{identity} macro is not
  464. followed by an argument in parentheses.
  465. The \.{WEB} language has another feature that is somewhat similar to a
  466. numeric macro. A {\sl preprocessed string\/} is a string that is like
  467. a \PASCAL\ string but delimited by double-quote marks (\.") instead of
  468. single-quotes. Double-quote marks inside of such strings are indicated by
  469. giving two double-quotes in a row. If a preprocessed string is
  470. of length one (e.g., \.{"A"} or \.{""""}), it will be treated by \.{TANGLE}
  471. as equivalent to the corresponding ASCII-code integer (e.g., \.{65} or
  472. \.{34}). And if a preprocessed string is not of length one, it will be
  473. converted into an integer equal to 256 or more. A {\sl string pool\/}
  474. containing all such strings will be written out by the \.{TANGLE}
  475. processor; this string pool file consists of string 256, then string 257,
  476. etc., where each string is followed by an end-of-line and prefixed by two
  477. decimal digits that define its length.  Thus, for example, the empty string
  478. \.{""} would be represented in the string pool file by a line containing
  479. the two characters `\.{00}', while the string \.{"""String"""} would be
  480. represented by `\.{08"String"}'.  A given string appears at most once in
  481. the string pool; the use of such a pool makes it easier to cope with
  482. \PASCAL's restrictions on string manipulation. The string pool ends with
  483. `\.{*nnnnnnnnn}', where \.{nnnnnnnnn} is a decimal number
  484. called the {\sl string pool check sum}. If any string changes, the check
  485. sum almost surely changes too; thus, the `\.{@\$}' feature
  486. described below makes it possible for a program to assure itself that it
  487. is reading its own string pool.
  488. Here is a simple example that combines numeric macros with preprocessed
  489. strings of length one:
  490. $$\lpile{\.{@d upper\_case\_Y = "Y"}\cr
  491. \.{@d case\_difference = -"y"+upper\_case\_Y}\cr}$$
  492. The result is to define
  493. $\\{upper\_case\_Y}=89$, $\\{case\_difference}=-32$.
  494. \section Control codes.
  495. We have seen several magic uses of `\.{@}' signs in \.{WEB} files, and it
  496. is time to make a systematic study of
  497. these special features. A \.{WEB} {\sl control code\/}
  498. is a two-character combination of which the first is `\.@'.
  499. Here is a complete list of the legal control codes. The letters $L$, $T$,
  500. $P$, $M$, $C$, and/or $S$ following each code indicate whether or not that
  501. code is allowable in limbo, in \TeX\ text, in \PASCAL\ text, in module
  502. names, in comments, and/or in strings.  A bar over such a letter means
  503. that the control code terminates the present part of the \.{WEB} file; for
  504. example, $\overline L$ means that this control code ends the limbo material
  505. before the first module.
  506. \def\@#1[#2] {\yskip\hangindent 2em\noindent\.{@#1\unskip
  507.   \spacefactor1000{ }}$[#2]$\quad}
  508. \def\oP{\overline P}
  509. \def\oT{\overline T\mskip1mu}
  510. \@@ [C,L,M,P,S,T] A double \.@ denotes the single character `\.@'. This is
  511. the only control code that is legal in limbo, in comments, and in strings.
  512. \@\ [\overline L,\oP,\oT] This denotes the beginning of a new
  513. (unstarred) module. A tab mark or end-of-line (carriage return)
  514. is equivalent to a space when it follows an \.@ sign.
  515. \@* [\overline L,\oP,\oT] This denotes the beginning of a new starred
  516. module, i.e., a module that begins a new major group. The title of the new
  517. group should appear after the \.{@*}, followed by a period. As explained
  518. above, \TeX\ control sequences should be avoided in such titles unless
  519. they are quite simple. When \.{WEAVE} and \.{TANGLE} read a \.{@*}, they
  520. print an asterisk on the terminal
  521. followed by the current module number, so that the user
  522. can see some indication of progress. The very first module should be starred.
  523. \@d [\oP,\oT] Macro definitions begin with \.{@d} (or \.{@D}), followed by
  524. the \PASCAL\ text for one of the three kinds of macros, as explained
  525. earlier.
  526. \@f [\oP,\oT] Format definitions begin with \.{@f} (or \.{@F}); they cause
  527. \.{WEAVE} to treat identifiers in a special way when they appear in
  528. \PASCAL\ text. The general form of a format definition is `\.{@f} \|l \.{==}
  529. \|r', followed by an optional comment enclosed in braces, where \|l and \|r
  530. are identifiers; \.{WEAVE} will subsequently treat identifier \|l as it
  531. currently treats \|r. This feature allows a \.{WEB} programmer to invent
  532. new reserved words and/or to unreserve some of \PASCAL's reserved
  533. identifiers. The definition part of each module consists of any number of
  534. macro definitions (beginning with \.{@d}) and format definitions (beginning
  535. with \.{@f}), intermixed in any order.
  536. \@p [\oP,\oT] The \PASCAL\ part of an unnamed module begins with \.{@p}
  537. (or \.{@P}). This causes \.{TANGLE} to append the following \PASCAL\ code
  538. to the initial program text $T_0$ as explained above. The \.{WEAVE}
  539. processor does not cause a `\.{@p}' to appear explicitly in the \TeX\
  540. output, so if you are creating a \.{WEB} file based on a \TeX-printed
  541. \.{WEB} documentation you have to remember to insert \.{@p} in the
  542. appropriate places of the unnamed modules.
  543. \@< [P,\oT] A module name begins with \.{@<} followed by \TeX\ text followed
  544. by \.{@>}; the \TeX\ text should not contain any \.{WEB} control codes
  545. except \.{@@}, unless these control codes appear in \PASCAL\ text that
  546. is delimited by \pb. The module name may be abbreviated, after its first
  547. appearance in a \.{WEB} file, by giving any unique prefix followed by \.{...},
  548. where the three dots immediately precede the closing \.{@>}. No module name
  549. should be a prefix of another. Module names may not appear in \PASCAL\
  550. text that is enclosed in \pb, nor may they appear in the definition part
  551. of a module (since the appearance of a module name ends the definition
  552. part and begins the \PASCAL\ part).
  553. \@\' [P,T] This denotes an octal constant, to be formed from the
  554. succeeding digits. For example, if the \.{WEB} file contains `\.{@\'100}',
  555. the \.{TANGLE} processor will treat this an equivalent to `\.{64}';
  556. the constant will be formatted as ``\O{100}'' in the \TeX\ output
  557. produced via \.{WEAVE}. You should use octal notation only for positive
  558. constants; don't try to get, e.g., $-1$ by saying `\.{@\'777777777777}'.
  559. \@" [P,T] A hexadecimal constant; `\.{@"D0D0}' tangles to \.{53456} and
  560. weaves to `\H{D0D0}'.
  561. \@\$ [P] This denotes the string pool check sum.
  562. \@\{ [P] The beginning of a ``meta comment,'' i.e., a comment
  563. that is supposed to appear in the \PASCAL\ code, is indicated by
  564. \.{@\{} in the \.{WEB} file. Such delimiters can be used as
  565. isolated symbols in macros or modules, but they should be properly nested
  566. in the final \PASCAL\ program. The \.{TANGLE} processor will convert
  567. `\.{@\{}' into `\.\{' in the \PASCAL\ output file, unless
  568. the output is already part of a meta-comment; in the latter case
  569. `\.{@\{}' is converted into `\.[', since \PASCAL\ does not allow
  570. nested comments. Incidentally, module numbers are automatically inserted
  571. as meta-comments into the \PASCAL\ program, in order to help correlate the
  572. outputs of \.{WEAVE} and \.{TANGLE} (see Appendix~C\null). Meta-comments
  573. can be used to put conditional text into a \PASCAL\ program; this helps to
  574. overcome one of the limitations of \.{WEB}, since the simple macro
  575. processing routines of \.{TANGLE} do not include the dynamic evaluation of
  576. boolean expressions.
  577. \@\} [P] The end of a ``meta comment'' is indicated by `\.{@\}}'; this is
  578. converted either into `\.\}' or `\.{]}' in the \PASCAL\ output, according
  579. to the conventions explained for \.{@\{} above.
  580. \@\& [P] The \.{@\&} operation causes whatever is on its left to be
  581. adjacent to whatever is on its right, in the \PASCAL\ output. No spaces or
  582. line breaks will separate these two items. However, the thing on the left
  583. should not be a semicolon, since a line break might occur after a semicolon.
  584. \@\^ [P,T] The ``control text'' that follows, up to the next
  585. `\.{@>}', will be entered into the index together with the identifiers of
  586. the \PASCAL\ program; this text will appear in roman type. For example, to
  587. put the phrase ``system dependencies'' into the index, you can type
  588. `\.{@\^system dependencies@>}' in each module
  589. that you want to index as system dependent. A control text, like a string,
  590. must end on the same line of the \.{WEB} file as it began.  Furthermore,
  591. no \.{WEB} control codes are allowed in a control text, not even
  592. \.{@@}. (If you need an \.{@} sign you can get around this restriction by
  593. typing `\.{\\AT!}'.)
  594. \@. [P,T] The ``control text'' that follows will be entered into the index
  595. in \.{typewriter} \.{type}; see the rules for `\.{@\^}', which is analogous.
  596. \@: [P,T] The ``control text'' that follows will be entered into the index
  597. in a format controlled by the \TeX\ macro `\.{\\9}', which the user
  598. should define as desired; see the rules for `\.{@\^}', which is analogous.
  599. \@t [P] The ``control text'' that follows, up to the next `\.{@>}', will
  600. be put into a \TeX\ \.{\\hbox} and formatted along with the neighboring
  601. \PASCAL\ program. This text is ignored by \.{TANGLE}, but it can be used
  602. for various purposes within \.{WEAVE}. For example, you can make comments
  603. that mix \PASCAL\ and classical mathematics, as in `$\\{size}<2^{15}$', by
  604. typing `\.{|size < @t\$2\^\{15\}\$@>|}'.  A control text must end on the
  605. same line of the \.{WEB} file as it began, and it may not contain any
  606. \.{WEB} control codes.
  607. \@= [P] The ``control text'' that follows, up to the next `\.{@>}', will
  608. be passed verbatim to the \PASCAL\ program.
  609. \@\\ [P] Force end-of-line here in the \PASCAL\ program file.
  610. \@! [P,T] The module number in an index entry will be underlined if `\.{@!}'
  611. immediately precedes the identifier or control text being indexed. This
  612. convention is used to distinguish the modules where an identifier is
  613. defined, or where it is explained in some special way, from the modules
  614. where it is used. A~reserved word or an identifier of length one will not
  615. be indexed except for underlined entries. An `\.{@!}' is implicitly inserted
  616. by \.{WEAVE} just after the reserved words \&{function}, \&{procedure},
  617. \&{program}, and \&{var}, and just after \.{@d} and \.{@f}. But you should
  618. insert your own `\.{@!}' before the definitions of types, constants,
  619. variables, parameters, and components of records and enumerated types that
  620. are not covered by this implicit convention, if you want to improve the
  621. quality of the index that you get.
  622. \@? [P,T] This cancels an implicit (or explicit) `\.{@!}', so that the next
  623. index entry will not be underlined.
  624. \@, [P] This control code inserts a thin space in \.{WEAVE}'s output; it is
  625. ignored by \.{TANGLE}. Sometimes you need this extra space if you are using
  626. macros in an unusual way, e.g., if two identifiers are adjacent.
  627. \@/ [P] This control code causes a line break to occur within a \PASCAL\
  628. program formatted by \.{WEAVE}; it is ignored by \.{TANGLE}. Line breaks
  629. are chosen automatically by \TeX\ according to a scheme that works 99\%\
  630. of the time, but sometimes you will prefer to force a line break so that
  631. the program is segmented according to logical rather than visual criteria.
  632. Caution: `\.{@/}' should be used only after statements or clauses, not in
  633. the middle of an expression; use \.{@|} in the middle of expressions, in
  634. order to keep \.{WEAVE}'s parser happy.
  635. \@| [P] This control code specifies an optional line break in the midst of
  636. an expression. For example, if you have a long condition between \&{if} and
  637. \&{then}, or a long expression on the right-hand side of an assignment
  638. statement, you can use `\.{@|}' to specify breakpoints more logical than
  639. the ones that \TeX\ might choose on visual grounds.
  640. \@\# [P] This control code forces a line break, like \.{@/} does,
  641. and it also causes a little extra white space to appear between the lines at
  642. this break. You might use it, for example, between procedure definitions or
  643. between groups of macro definitions that are logically separate but within
  644. the same module.
  645. \@+ [P] This control code cancels a line break that might otherwise be
  646. inserted by \.{WEAVE}, e.g., before the word `\&{else}', if you want to
  647. put a short if-then-else construction on a single line. It is ignored by
  648. \.{TANGLE}.
  649. \@; [P] This control code is treated like a semicolon, for formatting
  650. purposes, except that it is invisible. You can use it, for example, after
  651. a module name when the \PASCAL\ text represented by that module name ends
  652. with a semicolon.
  653. \yskip\noindent
  654. The last six control codes (namely `\.{@,}', `\.{@/}', `\.{@|}',
  655. `\.{@\#}', `\.{@+}', and `\.{@;}') have no effect on the \PASCAL\
  656. program output by \.{TANGLE}; they merely help to improve the readability
  657. of the \TeX-formatted \PASCAL\ that is output by \.{WEAVE}, in unusual
  658. circumstances. \.{WEAVE}'s built-in formatting method is fairly good, but
  659. it is incapable of handling all possible cases, because it must deal with
  660. fragments of text involving macros and module names; these fragments do
  661. not necessarily obey \PASCAL's syntax. Although \.{WEB} allows you to
  662. override the automatic formatting, your best strategy is not to worry
  663. about such things until you have seen what \.{WEAVE} produces automatically,
  664. since you will probably need to make only a few corrections when you are
  665. touching up your documentation.
  666. Because of the rules by which every module is broken into three parts,
  667. the control codes `\.{@d}', `\.{@f}', and `\.{@p}' are not allowed to occur
  668. once the \PASCAL\ part of a module has begun.
  669. \section Additional features and caveats.
  670. 1. The character pairs `\.{(*}', `\.{*)}', `\.{(.}', and `\.{.)}' are
  671. converted automatically in \PASCAL\ text as though they were
  672. `\.{@\{}', `\.{@\}}', `\.[', and `\.]', respectively, except
  673. of course in strings. Furthermore in certain installations of \.{WEB} that
  674. {\def\\#1#2{`{\tentex\char'#1#2}'}%
  675. have an extended character set, the characters \\32, \\34, \\35, \\30,
  676. \\36, \\04, \\37, \\05, and \\06}
  677. can be typed as abbreviations for
  678. `\.{<>}', `\.{<=}', `\.{>=}', `\.{:=}', `\.{==}', `\.{and}', `\.{or}',
  679. `\.{not}', and `\.{in}', respectively. However, the latter abbreviations
  680. are not used in the standard versions of \.{WEAVE.WEB} and \.{TANGLE.WEB}
  681. that are distributed to people who are installing \.{WEB} on other
  682. computers, and the programs are designed to produce only standard ASCII
  683. characters as output if the input consists entirely of ASCII characters.
  684. 2. If you have an extended character set, all of the characters listed
  685. in Appendix C of {\sl The \TeX book\/} can be used in strings. But you should
  686. stick to standard ASCII characters if you want to write programs that will
  687. be useful to all the poor souls out there who don't have extended
  688. character sets.
  689. 3. The \TeX\ file output by \.{WEAVE} is broken into lines having at most
  690. 80 characters each. The algorithm that does this line breaking is unaware
  691. of \TeX's convention about comments following `\.\%' signs on a line. When
  692. \TeX\ text is being copied, the existing line breaks are copied as well,
  693. so there is no problem with `\.\%' signs unless the original \.{WEB} file
  694. contains a line more than eighty characters long or a line with \PASCAL\
  695. text in \pb\ that expands to more than eighty characters long. Such lines
  696. should not have `\.\%' signs.
  697. 4. \PASCAL\ text is translated by a ``bottom up'' procedure that
  698. identifies each token as a ``part of speech'' and combines parts of speech
  699. into larger and larger phrases as much as possible according to a special
  700. grammar that is explained in the documentation of \.{WEAVE}. It is easy to
  701. learn the translation scheme for simple constructions like single
  702. identifiers and short expressions, just by looking at a few examples of
  703. what \.{WEAVE} does, but the general mechanism is somewhat complex because
  704. it must handle much more than \PASCAL\ itself. Furthermore the output
  705. contains embedded codes that cause \TeX\ to indent and break lines as
  706. necessary, depending on the fonts used and the desired page width. For
  707. best results it is wise to adhere to the following restrictions:
  708. \yskip\itemitem{a)}Comments in \PASCAL\ text should appear only after
  709. statements or clauses; i.e., after semicolons, after reserved words like
  710. \&{then} and \&{do}, or before reserved words like \&{end} and \&{else}.
  711. Otherwise \.{WEAVE}'s parsing method may well get mixed up.
  712. \itemitem{b)}Don't enclose long \PASCAL\ texts in \pb, since the
  713. indentation and line breaking codes are omitted when the \pb\ text is
  714. translated from \PASCAL\ to \TeX. Stick to simple expressions or
  715. statements.
  716. \yskip
  717. 5. Comments and module names are not permitted in \pb\ text. After a `\.|'
  718. signals the change from \TeX\ text to \PASCAL\ text, the next `\.|' that is
  719. not part of a string or control text ends the \PASCAL\ text.
  720. 6. A comment must have properly nested occurrences of left and right
  721. braces, otherwise \.{WEAVE} and \.{TANGLE} will not know where the comment
  722. ends. However, the character pairs `\.{\\\{}' and `\.{\\\}}' do not count
  723. as left and right braces in comments, and the character pair `\.{\\|}'
  724. does not count as a delimiter that begins \PASCAL\ text. (The actual rule
  725. is that a character after `\.\\' is ignored; hence in `\.{\\\\\{}' the
  726. left brace {\sl does\/} count.) At present, \.{TANGLE} and \.{WEAVE} treat
  727. comments in slightly different ways, and it is necessary to satisfy both
  728. conventions: \.{TANGLE} ignores `\.|' characters entirely, while \.{WEAVE}
  729. uses them to switch between \TeX\ text and \PASCAL\ text. Therefore, a
  730. comment that includes a brace in a string in \pb---e.g., `\.{\{{ }look at
  731. this |"\{"| \}}'---will be handled correctly by \.{WEAVE}, but \.{TANGLE}
  732. will think there is an unmatched left brace. In order to satisfy both
  733. processors, one can write `\.{\{{ }look at this \\leftbrace\\{ }\}}', after
  734. setting up`\.{\\def\\leftbrace\{|"\{"|\}}'.
  735. 7. Reserved words of \PASCAL\ must appear entirely in lowercase letters
  736. in the \.{WEB} file; otherwise their special nature will not be recognized
  737. by \.{WEAVE}. You could, for example, have a macro named \\{END} and it
  738. would not be confused with \PASCAL's \&{end}.
  739. However, you may not want to capitalize macro names just to distinguish them
  740. from other identifiers.  Here is a way to unreserve \PASCAL's reserved word
  741. `\&{type}' and to substitute another word `\&{mtype}' in the \.{WEB} file.
  742. $$\vbox{\halign{\tt #\hfil\cr
  743. @d type(\char'43) == mem[\char'43].t\cr
  744. @d mtype == t \char'100\char'46{} y \char'100\char'46{} p
  745.   \char'100\char'46{} e\cr
  746. @f mtype == type\cr
  747. @f type == true\cr}}$$
  748. In the output of \.{TANGLE}, the macro \.{mtype} now produces `\.{TYPE}'
  749. and the macro \.{type(x)} now produces `\.{MEM[X].T}'. In the output of
  750. \.{WEAVE}, these same inputs produce \&{mtype} and \\{type}(\|x),
  751. respectively.
  752. 8. The \.{@f} feature allows you to define one identifier to act like
  753. another, and these format definitions are carried out sequentially, as the
  754. example above indicates. However, a given identifier has only one printed format
  755. throughout the entire document (and this format will even be used before
  756. the \.{@f} that defines it). The reason is that \.{WEAVE} operates in two
  757. passes; it processes \.{@f}'s and cross-references on the first pass and
  758. it does the output on the second.
  759. 9. You may want some \.{@f} formatting that doesn't correspond to any
  760. existing reserved word. In that case, \.{WEAVE} could be extended in a
  761. fairly obvious way to include new ``reserved words'' in its vocabulary.
  762. The identifier `\&{xclause}' has in fact been included already as a
  763. reserved word, so that it can be used to format the `\&{loop}' macro,
  764. where `\&{loop}' is defined to be equivalent to `\&{while \\{true} do}'.
  765. 10. Sometimes it is desirable to insert spacing into \PASCAL\ code that is
  766. more general than the thin space provided by `\.{@,}'. The \.{@t} feature
  767. can be used for this purpose; e.g., `\.{@t\\hskip 1in@>}' will
  768. leave one inch of blank space. Furthermore, `\.{@t\\4@>}' can be
  769. used to backspace by one unit of indentation, since the control sequence
  770. \.{\\4} is defined in \.{webmac} to be such a backspace. (This
  771. control sequence is used, for example, at the beginning of lines that
  772. contain labeled statements, so that the label will stick out a little at
  773. the left.)
  774. 11. \.{WEAVE} and \.{TANGLE} are designed to work with two input files,
  775. called \\{web\_file} and \\{change\_file}, where \\{change\_file} contains
  776. data that overrides selected portions of \\{web\_file}. The resulting merged
  777. text is actually what has been called the \.{WEB} file elsewhere in this
  778. report.
  779. Here's how it works: The change file consists of zero or more ``changes,''
  780. where a change has the form `\.{@x}$\langle$old lines$\rangle$\.{@y}$\langle$%
  781. new lines$\rangle$\.{@z}'. The special control codes \.{@x}, \.{@y}, \.{@z},
  782. which are allowed only in change files, must appear at the beginning of a line;
  783. the remainder of such a line is ignored.
  784. The $\langle$old lines$\rangle$ represent material that exactly matches
  785. consecutive lines of the \\{web\_file}; the $\langle$new lines$\rangle$
  786. represent zero or more lines that are supposed to replace the old. Whenever
  787. the first ``old line'' of a change is found to match a line in the
  788. \\{web\_file}, all the other lines in that change must match too.
  789. Between changes, before the first change, and after the last change,
  790. the change file can have any number of lines that do not begin with
  791. `\.{@x}', `\.{@y}', or~`\.{@z}'. Such lines are bypassed and not used for
  792. matching purposes.
  793. This dual-input feature is useful when working with a master \.{WEB} file
  794. that has been received from elsewhere (e.g., \.{TANGLE.WEB} or
  795. \.{WEAVE.WEB} or \.{TEX.WEB}), when changes are desirable to customize the
  796. program for your local computer system. You will be able to debug your
  797. system-dependent changes without clobbering the master web file; and once
  798. your changes are working, you will be able to incorporate them readily
  799. into new releases of the master web file that you might receive from time
  800. to time.
  801. \section Appendices.
  802. The basic ideas of \.{WEB} can be understood most easily by looking at
  803. examples of ``real'' programs. Appendix~A shows the \.{WEB} input that
  804. generated modules 55--59 of the \.{WEAVE} program; Appendix~B shows the
  805. corresponding \TeX\ code output by \.{WEAVE}; and Appendix~C shows excerpts
  806. from the corresponding \PASCAL\ code output by \.{TANGLE}.
  807. The complete webs for \.{WEAVE} and \.{TANGLE} appear as the bulk of this
  808. report, in Appendices D and~E. The reader should first compare Appendix~A
  809. to the corresponding portion of Appendix~D; then the same material should
  810. be compared to Appendices B and~C. Finally, if time permits, the reader may
  811. enjoy studying the complete programs in Appendices D and~E, since \.{WEAVE}
  812. and \.{TANGLE} contain several interesting aspects, and since an attempt
  813. has been made in these appendices to evolve a style of programming that
  814. makes good use of the \.{WEB} language.
  815. Finally, Appendix F is the `\.{webmac}' file that sets \TeX\ up to accept
  816. the output of \.{WEAVE}; Appendix~G discusses how to use some of its macros
  817. to vary the output formats; and Appendix~H discusses what needs to be done
  818. when \.{WEAVE} and \.{TANGLE} are installed in a new operating environment.
  819. \section Performance statistics.
  820. The programs in Appendices D and E will optionally keep statistics on
  821. how much memory they require. Here is what they once printed out when
  822. processing themselves:
  823. \def\pstat#1#2#3
  824. #4{\yskip\noindent\.{#1} applied to \.{#2} (cpu time #3 sec)\par
  825. \halign{\quad\tt##\hfil\cr#4}}
  826. \pstat{TANGLE}{TANGLE}{15}
  827. {Memory usage statistics:\cr
  828. 456 names, 215 replacement texts;\cr
  829. 3396+3361 bytes, 6685+7329+5805 tokens.\cr}
  830. \pstat{TANGLE}{WEAVE}{30}
  831. {Memory usage statistics:\cr
  832. 692 names, 339 replacement texts;\cr
  833. 4576+4294 bytes, 10184+9875+9150 tokens.\cr}
  834. \pstat{WEAVE}{TANGLE}{45}
  835. {Memory usage statistics: 478 names, 2045 cross references, 4159+3729 bytes;\cr
  836. parsing required 684 scraps, 1300 texts, 3766 tokens, 119 levels;\cr
  837. sorting required 34 levels.\cr}
  838. \pstat{WEAVE}{WEAVE}{65}
  839. {Memory usage statistics: 737 names, 3306 cross references, 4896+4962 bytes;\cr
  840. parsing required 684 scraps, 1300 texts, 3766 tokens, 119 levels;\cr
  841. sorting required 73 levels.\cr}
  842. \yskip\noindent The cpu time for \PASCAL\ to process \.{TANGLE.PAS} was
  843. approximately 13 seconds, and \.{WEAVE.PAS} took approximately 26 seconds;
  844. thus the tangling time was slightly more than the compiling time.  The cpu
  845. time for \TeX\ to process \.{TANGLE.TEX} was approximately 500 seconds,
  846. and \.{WEAVE.TEX} took approximately 750 seconds (i.e., about 7
  847. seconds per printed page, where these pages are substantially larger than
  848. the pages in a normal book). All cpu times quoted are for a DECsystem-10.
  849. \def\K{{\mc K}}
  850. The file \.{TANGLE.WEB} is about 125\K\ characters long; \.{TANGLE}
  851. reduces it to a file \.{TANGLE.PAS} whose size is about 42\K\ characters,
  852. while \.{WEAVE} expands it to a file \.{TANGLE.TEX} of about 185\K\null.
  853. The corresponding file sizes for \.{WEAVE.WEB}, \.{WEAVE.PAS}, and
  854. \.{WEAVE.TEX} are 180\K, 89\K, and 265\K.
  855. The much larger file \.{TEX.WEB} led to the following numbers:
  856. \pstat{TANGLE}{TEX}{110}
  857. {Memory usage statistics:\cr
  858. 3750 names, 1768 replacement texts;\cr
  859. 41895+41053 bytes, 42378+45074+41091 tokens.\cr}
  860. \pstat{WEAVE}{TEX}{270}
  861. {Memory usage statistics: 3412 names, 19699 cross references,
  862.   37900+40232 bytes;\cr
  863. parsing required 685 scraps, 1303 texts, 3784 tokens, 104 levels;\cr
  864. sorting required 52 levels.\cr}
  865. \yskip\noindent
  866. \PASCAL\ did \.{TEX.PAS} in about 75 seconds; \TeX\ did \.{TEX.TEX}
  867. in about 3600.
  868. % Here is a quotation that could not really be omitted
  869. \vfill
  870. {\baselineskip9pt
  871. \halign to\hsize{\hfil\quoteit#\tabskip 0pt plus 100pt&
  872.   \hfil\quoteit#\tabskip 0pt\cr
  873. O, what a tangled web we weave&
  874.   O, what a tangled WEB we weave\cr
  875. When first we practise to deceive!&
  876.   When \TeX\ we practise to conceive!\cr
  877. \noalign{\vskip 2pt}
  878. \quoterm ---SIR WALTER SCOTT, {\quoteit Marmion} 6:17 (1808)&
  879.   \quoterm ---RICHARD PALAIS (1982)\cr
  880. \eject
  881. \def\runninghead{APPENDIX A --- {\tentt WEB} FILE FORMAT}
  882. \section Appendix A.
  883. This excerpt from \.{WEAVE.WEB} produced modules 55--59 in Appendix~D.
  884. Note that some of the lines are indented to show the program structure.
  885. The indentation is ignored by \.{WEAVE} and \.{TANGLE}, but users find
  886. that \.{WEB} files are quite readable if they have some such indentation.
  887. \vskip 6pt
  888. \begingroup \def\tt{\eighttt} \baselineskip9pt
  889. % Note to myself: I had to remove SAIL characters from the file here!
  890. % Also tabs replaced by double-space. The changes were made in WEAVE source.
  891. \verbatim
  892. @* Searching for identifiers.
  893. The hash table described above is updated by the |id_lookup| procedure,
  894. which finds a given identifier and returns a pointer to its index in
  895. |byte_start|. The identifier is supposed to match character by character
  896. and it is also supposed to have a given |ilk| code; the same name may be
  897. present more than once if it is supposed to appear in the index with
  898. different typesetting conventions.
  899. If the identifier was not already present, it is inserted into the table.
  900. Because of the way \.{WEAVE}'s scanning mechanism works, it is most convenient
  901. to let |id_lookup| search for an identifier that is present in the |buffer|
  902. array. Two other global variables specify its position in the buffer: the
  903. first character is |buffer[id_first]|, and the last is |buffer[id_loc-1]|.
  904. @<Glob...@>=
  905. @!id_first:0..long_buf_size; {where the current identifier begins in the buffer}
  906. @!id_loc:0..long_buf_size; {just after the current identifier in the buffer}
  907. @!hash:array [0..hash_size] of sixteen_bits; {heads of hash lists}
  908. @ Initially all the hash lists are empty.
  909. @<Local variables for init...@>=
  910. @!h:0..hash_size; {index into hash-head array}
  911. @ @<Set init...@>=
  912. for h:=0 to hash_size-1 do hash[h]:=0;
  913. @ Here now is the main procedure for finding identifiers (and index
  914. entries).  The parameter |t| is set to the desired |ilk| code. The
  915. identifier must either have |ilk=t|, or we must have
  916. |t=normal| and the identifier must be a reserved word.
  917. @p function id_lookup(@!t:eight_bits):name_pointer; {finds current identifier}
  918. label found;
  919. var i:0..long_buf_size; {index into |buffer|}
  920. @!h:0..hash_size; {hash code}
  921. @!k:0..max_bytes; {index into |byte_mem|}
  922. @!w:0..ww-1; {row of |byte_mem|}
  923. @!l:0..long_buf_size; {length of the given identifier}
  924. @!p:name_pointer; {where the identifier is being sought}
  925. begin l:=id_loc-id_first; {compute the length}
  926. @<Compute the hash code |h|@>;
  927. @<Compute the name location |p|@>;
  928. if p=name_ptr then @<Enter a new name into the table at position |p|@>;
  929. id_lookup:=p;
  930. @ A simple hash code is used: If the sequence of
  931. ASCII codes is $c_1c_2\ldots c_m$, its hash value will be
  932. $$(2^{n-1}c_1+2^{n-2}c_2+\cdots+c_n)\,\bmod\,|hash_size|.$$
  933. @<Compute the hash...@>=
  934. h:=buffer[id_first]; i:=id_first+1;
  935. while i<id_loc do
  936.   begin h:=(h+h+buffer[i]) mod hash_size; incr(i);
  937.   end
  938. ?endgroup % end of verbatim mode
  939. \endgroup
  940. \vfill\eject
  941. \def\runninghead{APPENDIX B --- TRANSLATION BY {\tentt WEAVE}}
  942. \section Appendix B.
  943. This excerpt from \.{WEAVE.TEX} corresponds to Appendix A.
  944. % I've inserted \vfill's here at the blank lines, to squeeze this on one page!
  945. \begingroup \def\tt{\eighttt} \baselineskip9pt
  946. \verbatim
  947. ?vfill?verbatimgobble
  948. \N55.  Searching for identifiers.
  949. The hash table described above is updated by the \\{id\_lookup} procedure,
  950. which finds a given identifier and returns a pointer to its index in
  951. \\{byte\_start}. The identifier is supposed to match character by character
  952. and it is also supposed to have a given \\{ilk} code; the same name may be
  953. present more than once if it is supposed to appear in the index with
  954. different typesetting conventions.
  955. If the identifier was not already present, it is inserted into the table.
  956. ?vfill?verbatimgobble
  957. Because of the way \.{WEAVE}'s scanning mechanism works, it is most convenient
  958. to let \\{id\_lookup} search for an identifier that is present in the %
  959. \\{buffer}
  960. array. Two other global variables specify its position in the buffer: the
  961. first character is $\\{buffer}[\\{id\_first}]$, and the last is $\\{buffer}[%
  962. \\{id\_loc}-1]$.
  963. ?vfill?verbatimgobble
  964. \Y\P$\4\X9:Globals in the outer block\X\mathrel{+}\S$\6
  965. \4\\{id\_first}: \37$0\to\\{long\_buf\_size}$;\C{where the current identifier
  966. begins in the buffer}\6
  967. \4\\{id\_loc}: \37$0\to\\{long\_buf\_size}$;\C{just after the current
  968. identifier in the buffer}\7
  969. \4\\{hash}: \37\&{array} $[0\to\\{hash\_size}]$ \1\&{of}\5
  970. \\{sixteen\_bits};\C{heads of hash lists}\2\par
  971. ?vfill?verbatimgobble
  972. \M56. Initially all the hash lists are empty.
  973. ?vfill?verbatimgobble
  974. \Y\P$\4\X16:Local variables for initialization\X\mathrel{+}\S$\6
  975. \4\|h: \37$0\to\\{hash\_size}$;\C{index into hash-head array}\par
  976. ?vfill?verbatimgobble
  977. \M57. \P$\X10:Set initial values\X\mathrel{+}\S$\6
  978. \&{for} $\|h\K0\mathrel{\&{to}}\\{hash\_size}-1$ \1\&{do}\5
  979. $\\{hash}[\|h]\K0$;\2\par
  980. ?vfill?verbatimgobble
  981. \M58. Here now is the main procedure for finding identifiers (and index
  982. entries).  The parameter \|t is set to the desired \\{ilk} code. The
  983. identifier must either have $\\{ilk}=\|t$, or we must have
  984. $\|t=\\{normal}$ and the identifier must be a reserved word.
  985. ?vfill?verbatimgobble
  986. \Y\P\4\&{function}\1\  \37$\\{id\_lookup}(\|t:\\{eight\_bits})$: \37\\{name%
  987. \_pointer};\C{finds current identifier}\6
  988. \4\&{label} \37\\{found};\6
  989. \4\&{var} \37\|i: \37$0\to\\{long\_buf\_size}$;\C{index into \\{buffer}}\6
  990. \|h: \37$0\to\\{hash\_size}$;\C{hash code}\6
  991. \|k: \37$0\to\\{max\_bytes}$;\C{index into \\{byte\_mem}}\6
  992. \|w: \37$0\to\\{ww}-1$;\C{row of \\{byte\_mem}}\6
  993. \|l: \37$0\to\\{long\_buf\_size}$;\C{length of the given identifier}\6
  994. \|p: \37\\{name\_pointer};\C{where the identifier is being sought}\2\6
  995. \&{begin} \37$\|l\K\\{id\_loc}-\\{id\_first}$;\C{compute the length}\6
  996. \X59:Compute the hash code \|h\X;\6
  997. \X60:Compute the name location \|p\X;\6
  998. \&{if} $\|p=\\{name\_ptr}$ \1\&{then}\5
  999. \X62:Enter a new name into the table at position \|p\X;\2\6
  1000. $\\{id\_lookup}\K\|p$;\6
  1001. \&{end};\par
  1002. ?vfill?verbatimgobble
  1003. \M59. A simple hash code is used: If the sequence of
  1004. ASCII codes is $c_1c_2\ldots c_m$, its hash value will be
  1005. $$(2^{n-1}c_1+2^{n-2}c_2+\cdots+c_n)\,\bmod\,\\{hash\_size}.$$
  1006. ?vfill?verbatimgobble
  1007. \Y\P$\4\X59:Compute the hash code \|h\X\S$\6
  1008. $\|h\K\\{buffer}[\\{id\_first}]$;\5
  1009. $\|i\K\\{id\_first}+1$;\6
  1010. \&{while} $\|i<\\{id\_loc}$ \1\&{do}\6
  1011. \&{begin} \37$\|h\K(\|h+\|h+\\{buffer}[\|i])\mathbin{\&{mod}}\\{hash\_size}$;\5
  1012. $\\{incr}(\|i)$;\6
  1013. \&{end}\2\par
  1014. \U section~58.\fi
  1015. ?endgroup
  1016. \endgroup
  1017. \eject
  1018. \def\runninghead{APPENDIX C --- TRANSLATION BY {\tentt TANGLE}}
  1019. \section Appendix C.
  1020. The \.{TANGLE} processor converts \.{WEAVE.WEB} into a syntactically
  1021. correct (but not very pretty) \PASCAL\ program \.{WEAVE.PAS}.
  1022. The first three and last two lines of output are shown here, together with the
  1023. lines of code generated by modules 55--62 and the environments of
  1024. those lines. There are 1559 lines in all; the notation
  1025. `\.. \\. \\.' stands for portions that are not shown.
  1026. Note that, for example, the code corresponding to
  1027. module 55 begins with `\.{\{55:\}}' and ends with `\.{\{:55\}}';
  1028. the code from modules 59--62 has been tangled into the code from module 58.
  1029. \vskip6pt
  1030. \verbatim
  1031. {2:}{4:}{$C-,A+,D-}{[$C+,D+]}{:4}
  1032. PROGRAM WEAVE(WEBFILE,CHANGEFILE,TEXFILE);LABEL 9999;CONST{8:}
  1033. MAXBYTES=45000;MAXNAMES=5000;MAXMODULES=2000;HASHSIZE=353;BUFSIZE=100;
  1034.      . . .
  1035. TOKPTR:0..MAXTOKS;{MAXTOKPTR,MAXTXTPTR:0..MAXTOKS;}{:53}{55:}
  1036. IDFIRST:0..LONGBUFSIZE;IDLOC:0..LONGBUFSIZE;
  1037. HASH:ARRAY[0..HASHSIZE]OF SIXTEENBITS;{:55}{63:}CURNAME:NAMEPOINTER;
  1038.      . . .
  1039. PROCEDURE INITIALIZE;VAR{16:}I:0..127;{:16}{40:}WI:0..1;{:40}{56:}
  1040. H:0..HASHSIZE;{:56}{247:}C:ASCIICODE;{:247}BEGIN{10:}HISTORY:=0;{:10}
  1041.      . . .
  1042. TOKPTR:=1;TEXTPTR:=1;TOKSTART[0]:=1;TOKSTART[1]:=1;{MAXTOKPTR:=1;
  1043. MAXTXTPTR:=1;}{:54}{57:}FOR H:=0 TO HASHSIZE-1 DO HASH[H]:=0;{:57}{94:}
  1044. SCANNINGHEX:=FALSE;{:94}{102:}MODTEXT[0]:=32;{:102}{124:}OUTPTR:=1;
  1045.      . . .
  1046. IF R=0 THEN XREF[P]:=XREFPTR ELSE XMEM[R].XLINKFIELD:=XREFPTR;END;{:51}
  1047. {58:}FUNCTION IDLOOKUP(T:EIGHTBITS):NAMEPOINTER;LABEL 31;
  1048. VAR I:0..LONGBUFSIZE;H:0..HASHSIZE;K:0..MAXBYTES;W:0..1;
  1049. L:0..LONGBUFSIZE;P:NAMEPOINTER;BEGIN L:=IDLOC-IDFIRST;{59:}
  1050. H:=BUFFER[IDFIRST];I:=IDFIRST+1;
  1051. WHILE I<IDLOC DO BEGIN H:=(H+H+BUFFER[I])MOD HASHSIZE;I:=I+1;END{:59};
  1052. {60:}P:=HASH[H];
  1053. WHILE P<>0 DO BEGIN IF(BYTESTART[P+2]-BYTESTART[P]=L)AND((ILK[P]=T)OR((T
  1054. =0)AND(ILK[P]>3)))THEN{61:}BEGIN I:=IDFIRST;K:=BYTESTART[P];W:=P MOD 2;
  1055. WHILE(I<IDLOC)AND(BUFFER[I]=BYTEMEM[W,K])DO BEGIN I:=I+1;K:=K+1;END;
  1056. IF I=IDLOC THEN GOTO 31;END{:61};P:=LINK[P];END;P:=NAMEPTR;
  1057. LINK[P]:=HASH[H];HASH[H]:=P;31:{:60};IF P=NAMEPTR THEN{62:}
  1058. BEGIN W:=NAMEPTR MOD 2;
  1059. IF BYTEPTR[W]+L>MAXBYTES THEN BEGIN WRITELN(TERMOUT);
  1060. WRITE(TERMOUT,'! Sorry, ','byte memory',' capacity exceeded');ERROR;
  1061. HISTORY:=3;JUMPOUT;END;
  1062. IF NAMEPTR+2>MAXNAMES THEN BEGIN WRITELN(TERMOUT);
  1063. WRITE(TERMOUT,'! Sorry, ','name',' capacity exceeded');ERROR;HISTORY:=3;
  1064. JUMPOUT;END;I:=IDFIRST;K:=BYTEPTR[W];
  1065. WHILE I<IDLOC DO BEGIN BYTEMEM[W,K]:=BUFFER[I];K:=K+1;I:=I+1;END;
  1066. BYTEPTR[W]:=K;BYTESTART[NAMEPTR+2]:=K;NAMEPTR:=NAMEPTR+1;ILK[P]:=T;
  1067. XREF[P]:=0;END{:62};IDLOOKUP:=P;END;{:58}{66:}
  1068. FUNCTION MODLOOKUP(L:SIXTEENBITS):NAMEPOINTER;LABEL 31;VAR C:0..4;
  1069.      . . .
  1070. WRITE(TERMOUT,'(That was a fatal error, my friend.)');END;END{:263};
  1071. END.{:261}
  1072. ?endgroup
  1073. \vfill\eject
  1074. \pageno=197 % take account of the page numbers for App's D and E.
  1075. \def\runninghead{APPENDIX F --- MACROS FOR FORMATTING}
  1076. \section Appendix F: The \.{webmac.tex} file.
  1077. This is the file that extends ``plain \TeX'' format in order to support the
  1078. features needed by the output of \.{WEAVE}.
  1079. \vskip6pt
  1080. \verbatim
  1081. % standard macros for WEB listings (in addition to PLAIN.TEX)
  1082. \xdef\fmtversion{\fmtversion+WEBMAC4.0} % identifies current set of macros
  1083. \parskip 0pt % no stretch between paragraphs
  1084. \parindent 1em % for paragraphs and for the first line of Pascal text
  1085. \font\eightrm=cmr8 \let\sc=\eightrm % NOT a caps-and-small-caps font!
  1086. \let\mainfont=\tenrm
  1087. \font\titlefont=cmr7 scaled\magstep4 % title on the contents page
  1088. \font\ttitlefont=cmtt10 scaled\magstep2 % typewriter type in title
  1089. \font\tentex=cmtex10 % TeX extended character set (used in strings)
  1090. \def\\#1{\hbox{\it#1\/\kern.05em}} % italic type for identifiers
  1091. \def\|#1{\hbox{$#1$}} % one-letter identifiers look a bit better this way
  1092. \def\{\hbox{\bf#1\/}} % boldface type for reserved words
  1093. \def\.#1{\hbox{\tentex % typewriter type for strings
  1094.   \let\\=\BS % backslash in a string
  1095.   \let\'=\RQ % right quote in a string
  1096.   \let\`=\LQ % left quote in a string
  1097.   \let\{=\LB % left brace in a string
  1098.   \let\}=\RB % right brace in a string
  1099.   \let\~=\TL % tilde in a string
  1100.   \let\ =\SP % space in a string
  1101.   \let\_=\UL % underline in a string
  1102.   \let\&=\AM % ampersand in a string
  1103.   #1}}
  1104. \def\#{\hbox{\tt\char`\#}} % parameter sign
  1105. \def\${\hbox{\tt\char`\$}} % dollar sign
  1106. \def\%{\hbox{\tt\char`\%}} % percent sign
  1107. \def\^{\ifmmode\mathchar"222 \else\char`^ \fi} % pointer or hat
  1108. % circumflex accents can be obtained from \^^D instead of \^
  1109. \def\AT!{@} % at sign for control text
  1110. \chardef\AM=`\& % ampersand character in a string
  1111. \chardef\BS=`\\ % backslash in a string
  1112. \chardef\LB=`\{ % left brace in a string
  1113. \def\LQ{{\tt\char'22}} % left quote in a string
  1114. \chardef\RB=`\} % right brace in a string
  1115. \def\RQ{{\tt\char'23}} % right quote in a string
  1116. \def\SP{{\tt\char`\ }} % (visible) space in a string
  1117. \chardef\TL=`\~ % tilde in a string
  1118. \chardef\UL=`\_ % underline character in a string
  1119. \newbox\bak \setbox\bak=\hbox to -1em{} % backspace one em
  1120. \newbox\bakk\setbox\bakk=\hbox to -2em{} % backspace two ems
  1121. \newcount\ind % current indentation in ems
  1122. \def\1{\global\advance\ind by1\hangindent\ind em} % indent one more notch
  1123. \def\2{\global\advance\ind by-1} % indent one less notch
  1124. \def\3#1{\hfil\penalty#10\hfilneg} % optional break within a statement
  1125. \def\4{\copy\bak} % backspace one notch
  1126. \def\5{\hfil\penalty-1\hfilneg\kern2.5em\copy\bakk\ignorespaces}% optional break
  1127. \def\6{\ifmmode\else\par % forced break
  1128.   \hangindent\ind em\noindent\kern\ind em\copy\bakk\ignorespaces\fi}
  1129. \def\7{\Y\6} % forced break and a little extra space
  1130. \let\yskip=\smallskip
  1131. \def\to{\mathrel{.\,.}} % double dot, used only in math mode
  1132. \def\note#1#2.{\Y\noindent{\hangindent2em\baselineskip10pt\eightrm#1~#2.\par}}
  1133. \def\lapstar{\rlap{*}}
  1134. \def\startsection{\Q\noindent{\let\*=\lapstar\bf\modstar.\quad}}
  1135. \def\defin#1{\global\advance\ind by 2 \1\&{#1 }} % begin `define' or `format'
  1136. \def\A{\note{See also section}} % crossref for doubly defined section name
  1137. \def\As{\note{See also sections}} % crossref for multiply defined section name
  1138. \def\B{\mathopen{\.{@\{}}} % begin controlled comment
  1139. \def\C#1{\ifmmode\gdef\XX{\null$\null}\else\gdef\XX{}\fi % Pascal comments
  1140.   \XX\hfil\penalty-1\hfilneg\quad$\{\,$#1$\,\}$\XX}
  1141. \def\D{\defin{define}} % macro definition
  1142. \def\E{\cdot10^} % exponent in floating point constant
  1143. \def\ET{ and~} % conjunction between two section numbers
  1144. \def\ETs{, and~} % conjunction between the last two of several section numbers
  1145. \def\F{\defin{format}} % format definition
  1146. \let\G=\ge % greater than or equal sign
  1147. \def\H#1{\hbox{\rm\char"7D\tt#1}} % hexadecimal constant
  1148. \let\I=\ne % unequal sign
  1149. \def\J{\.{@\&}} % TANGLE's join operation
  1150. \let\K=\gets % left arrow
  1151. \let\L=\le % less than or equal sign
  1152. \outer\def\M#1.{\MN#1.\ifon\vfil\penalty-100\vfilneg % beginning of section
  1153.   \vskip12ptminus3pt\startsection\ignorespaces}
  1154. \outer\def\N#1.#2.{\MN#1.\vfil\eject % beginning of starred section
  1155.   \def\rhead{\uppercase{\ignorespaces#2}} % define running headline
  1156.   \message{*\modno} % progress report
  1157.   \edef\next{\write\cont{\Z{#2}{\modno}{\the\pageno}}}\next % to contents file
  1158.   \ifon\startsection{\bf\ignorespaces#2.\quad}\ignorespaces}
  1159. \def\MN#1.{\par % common code for \M, \N
  1160.   {\xdef\modstar{#1}\let\*=\empty\xdef\modno{#1}}
  1161.   \ifx\modno\modstar \onmaybe \else\ontrue \fi \mark{\modno}}
  1162. \def\O#1{\hbox{\rm\char'23\kern-.2em\it#1\/\kern.05em}} % octal constant
  1163. \def\P{\rightskip=0pt plus 100pt minus 10pt % go into Pascal mode
  1164.   \sfcode`;=3000
  1165.   \pretolerance 10000
  1166.   \hyphenpenalty 10000 \exhyphenpenalty 10000
  1167.   \global\ind=2 \1\ \unskip}
  1168. \def\Q{\rightskip=0pt % get out of Pascal mode
  1169.   \sfcode`;=1500 \pretolerance 200 \hyphenpenalty 50 \exhyphenpenalty 50 }
  1170. \let\R=\lnot % logical not
  1171. \let\S=\equiv % equivalence sign
  1172. \def\T{\mathclose{\.{@\}}}} % terminate controlled comment
  1173. \def\U{\note{This code is used in section}} % crossref for use of a section
  1174. \def\Us{\note{This code is used in sections}} % crossref for uses of a section
  1175. \let\V=\lor % logical or
  1176. \let\W=\land % logical and
  1177. \def\X#1:#2\X{\ifmmode\gdef\XX{\null$\null}\else\gdef\XX{}\fi % section name
  1178.   \XX$\langle\,$#2{\eightrm\kern.5em#1}$\,\rangle$\XX}
  1179. \def\Y{\par\yskip}
  1180. \let\Z=\let % now you can \send the control sequence \Z
  1181. \def\){\hbox{\.{@\$}}} % sign for string pool check sum
  1182. \def\]{\hbox{\.{@\\}}} % sign for forced line break
  1183. \def\=#1{\kern2pt\hbox{\vrule\vtop{\vbox{\hrule
  1184.         \hbox{\strut\kern2pt\.{#1}\kern2pt}}
  1185.       \hrule}\vrule}\kern2pt} % verbatim string
  1186. \let\~=\ignorespaces
  1187. \let\*=*
  1188. \def\onmaybe{\let\ifon=\maybe} \let\maybe=\iftrue
  1189. \newif\ifon \newif\iftitle \newif\ifpagesaved
  1190. \def\lheader{\mainfont\the\pageno\eightrm\qquad\rhead\hfill\title\qquad
  1191.   \tensy x\mainfont\topmark} % top line on left-hand pages
  1192. \def\rheader{\tensy x\mainfont\topmark\eightrm\qquad\title\hfill\rhead
  1193.   \qquad\mainfont\the\pageno} % top line on right-hand pages
  1194. \def\page{\box255 }
  1195. \def\normaloutput#1#2#3{\ifodd\pageno\hoffset=\pageshift\fi
  1196.   \shipout\vbox{
  1197.     \vbox to\fullpageheight{
  1198.       \iftitle\global\titlefalse
  1199.       \else\hbox to\pagewidth{\vbox to10pt{}\ifodd\pageno #3\else#2\fi}\fi
  1200.       \vfill#1}} % parameter #1 is the page itself
  1201.   \global\advance\pageno by1}
  1202. \def\rhead{\.{WEB} OUTPUT} % this running head is reset by starred sections
  1203. \def\title{} % an optional title can be set by the user
  1204. \def\topofcontents{\centerline{\titlefont\title}
  1205.   \vfill} % this material will start the table of contents page
  1206. \def\botofcontents{\vfill} % this material will end the table of contents page
  1207. \def\contentspagenumber{0} % default page number for table of contents
  1208. \newdimen\pagewidth \pagewidth=6.5in % the width of each page
  1209. \newdimen\pageheight \pageheight=8.7in % the height of each page
  1210. \newdimen\fullpageheight \fullpageheight=9in % page height including headlines
  1211. \newdimen\pageshift \pageshift=0in % shift righthand pages wrt lefthand ones
  1212. \def\magnify#1{\mag=#1\pagewidth=6.5truein\pageheight=8.7truein
  1213.   \fullpageheight=9truein\setpage}
  1214. \def\setpage{\hsize\pagewidth\vsize\pageheight} % use after changing page size
  1215. \def\contentsfile{CONTENTS} % file that gets table of contents info
  1216. \def\readcontents{\input CONTENTS}
  1217. \newwrite\cont
  1218. \output{\setbox0=\page % the first page is garbage
  1219.   \openout\cont=\contentsfile
  1220.   \global\output{\normaloutput\page\lheader\rheader}}
  1221. \setpage
  1222. \vbox to \vsize{} % the first \topmark won't be null
  1223. \def\ch{\note{The following sections were changed by the change file:}
  1224.   \let\*=\relax}
  1225. \newbox\sbox % saved box preceding the index
  1226. \newbox\lbox % lefthand column in the index
  1227. \def\inx{\par\vskip6pt plus 1fil % we are beginning the index
  1228.   \write\cont{} % ensure that the contents file isn't empty
  1229.   \closeout\cont % the contents information has been fully gathered
  1230.   \output{\ifpagesaved\normaloutput{\box\sbox}\lheader\rheader\fi
  1231.     \global\setbox\sbox=\page \global\pagesavedtrue}
  1232.   \pagesavedfalse \eject % eject the page-so-far and predecessors
  1233.   \setbox\sbox\vbox{\unvbox\sbox} % take it out of its box
  1234.   \vsize=\pageheight \advance\vsize by -\ht\sbox % the remaining height
  1235.   \hsize=.5\pagewidth \advance\hsize by -10pt
  1236.     % column width for the index (20pt between cols)
  1237.   \parfillskip 0pt plus .6\hsize % try to avoid almost empty lines
  1238.   \def\lr{L} % this tells whether the left or right column is next
  1239.   \output{\if L\lr\global\setbox\lbox=\page \gdef\lr{R}
  1240.     \else\normaloutput{\vbox to\pageheight{\box\sbox\vss
  1241.         \hbox to\pagewidth{\box\lbox\hfil\page}}}\lheader\rheader
  1242.     \global\vsize\pageheight\gdef\lr{L}\global\pagesavedfalse\fi}
  1243.   \message{Index:}
  1244.   \parskip 0pt plus .5pt
  1245.   \outer\def\:##1, {\par\hangindent2em\noindent##1:\kern1em} % index entry
  1246.   \let\ttentry=\. \def\.##1{\ttentry{##1\kern.2em}} % give \tt a little room
  1247.   \def\[##1]{$\underline{##1}$} % underlined index item
  1248.   \rm \rightskip0pt plus 2.5em \tolerance 10000 \let\*=\lapstar
  1249.   \hyphenpenalty 10000 \parindent0pt}
  1250. \def\fin{\par\vfill\eject % this is done when we are ending the index
  1251.   \ifpagesaved\null\vfill\eject\fi % output a null index column
  1252.   \if L\lr\else\null\vfill\eject\fi % finish the current page
  1253.   \parfillskip 0pt plus 1fil
  1254.   \def\rhead{NAMES OF THE SECTIONS}
  1255.   \message{Section names:}
  1256.   \output{\normaloutput\page\lheader\rheader}
  1257.   \setpage
  1258.   \def\note##1##2.{\hfil\penalty-1\hfilneg\quad{\eightrm##1 ##2.}}
  1259.   \linepenalty=10 % try to conserve lines
  1260.   \def\U{\note{Used in section}} % crossref for use of a section
  1261.   \def\Us{\note{Used in sections}} % crossref for uses of a section
  1262.   \def\:{\par\hangindent 2em}\let\*=*\let\.=\ttentry}
  1263. \def\con{\par\vfill\eject % finish the section names
  1264.   \rightskip 0pt \hyphenpenalty 50 \tolerance 200
  1265.   \setpage
  1266.   \output{\normaloutput\page\lheader\rheader}
  1267.   \titletrue % prepare to output the table of contents
  1268.   \pageno=\contentspagenumber \def\rhead{TABLE OF CONTENTS}
  1269.   \message{Table of contents:}
  1270.   \topofcontents
  1271.   \line{\hfil Section\hbox to3em{\hss Page}}
  1272.   \def\Z##1##2##3{\line{\ignorespaces##1
  1273.     \leaders\hbox to .5em{.\hfil}\hfil\ ##2\hbox to3em{\hss##3}}}
  1274.   \readcontents\relax % read the contents info
  1275.   \botofcontents \end} % print the contents page(s) and terminate
  1276. ?endgroup
  1277. \vfill\eject
  1278. \def\runninghead{APPENDIX G --- NOTES ON FORMATTING}
  1279. \section Appendix G: How to use \.{WEB} macros.
  1280. The macros in \.{webmac} make it possible to produce a variety of formats
  1281. without editing the output of \.{WEAVE}, and the purpose of this appendix
  1282. is to explain some of the possibilities.
  1283. \def\point#1.{\yskip\indent#1.\quad\ignorespaces}
  1284. \point 1. Three fonts have been declared in addition to the standard fonts of
  1285. \.{PLAIN} format: You can say `\.{\{\\sc STUFF\}}' to get {\sc STUFF}
  1286. in small caps; and you can select the largish fonts \.{\\titlefont}
  1287. and \.{\\ttitlefont} in the title of your document, where \.{\\ttitlefont}
  1288. is a typewriter style of type.
  1289. \point 2. When you mention an identifier in \TeX\ text, you normally call
  1290. it `\.{|identifier|}'. But you can also say `\.{\\\\\{identifier\}}'. The
  1291. output will look the same in both cases, but the second alternative
  1292. doesn't put \\{identifier} into the index, since
  1293. it bypasses \.{WEAVE}'s translation from \PASCAL\ mode.
  1294. \point 3. To get typewriter-like type, as when referring to `\.{WEB}', you
  1295. can use the `\.{\\.}' macro (e.g., `\.{\\.\{WEB\}}'). In the argument to
  1296. this macro you should insert an additional backslash before the symbols
  1297. listed as `special string characters' in the index to \.{WEAVE}, i.e.,
  1298. before backslashes and dollar signs and the like.
  1299. A `\.{\\\ }' here will result in the visible space symbol; to get an
  1300. invisible space following a control sequence you can say `\.{\{\ \}}'.
  1301. \point 4. The three control sequences \.{\\pagewidth}, \.{\\pageheight},
  1302. and \.{\\fullpageheight} can be redefined in the limbo section at the
  1303. beginning of your \.{WEB} file, to change the dimensions of each page.
  1304. The standard settings
  1305. $$\lpile{\.{\\pagewidth=6.5in}\cr
  1306.   \.{\\pageheight=8.7in}\cr
  1307.   \.{\\fullpageheight=9in}\cr}$$
  1308. were used to prepare the present report; \.{\\fullpageheight} is
  1309. \.{\\pageheight} plus room for the additional heading and page numbers at
  1310. the top of each page. If you change any of these quantities, you should
  1311. call the macro \.{\\setpage} immediately after making the change.
  1312. \point 5. The \.{\\pageshift} macro defines an amount by which right-hand
  1313. pages (i.e., odd-numbered pages) are shifted right with respect to
  1314. left-hand (even-numbered) ones. By adjusting this amount you may be
  1315. able to get two-sided output in which the page numbers line up on
  1316. opposite sides of each sheet.
  1317. \point 6. The \.{\\title} macro will appear at the top of each page
  1318. in small caps. For example, Appendix~D was produced after saying
  1319. `\.{\\def\\title\{WEAVE\}}'.
  1320. \point 7. The first page usually is assigned page number 1.
  1321. To start on page 16, with contents
  1322. on page 15, say this: `\.{\\def\\contentspagenumber\{15\}}
  1323. \.{\\pageno=\\contentspagenumber} \.{\\advance\\pageno by 1}'. (Appendix~D
  1324. was generated that way.)
  1325. \point 8. The macro \.{\\iftitle} will suppress the header line if it is
  1326. defined by `\.{\\titletrue}'. The normal value is \.{\\titlefalse}
  1327. except for the table of contents; thus, the contents
  1328. page is usually unnumbered.
  1329. Two macros are provided to give flexibility to the table of
  1330. contents: \.{\\topofcontents} is invoked just before the contents
  1331. info is read, and \.{\\botofcontents} is invoked just after.
  1332. For example, Appendix~D was produced with the following definitions:
  1333. $$\lpile{\.{\\def\\topofcontents\{\\null\\vfill}\cr
  1334.   \.{ { }\\titlefalse \% include headline on the contents page}\cr
  1335.   \.{ { }\\def\\rheader\{\\mainfont Appendix D\\hfil 15\}}\cr
  1336.   \.{ { }\\centerline\{\\titlefont The \{\\ttitlefont WEAVE\}{ }processor\}}\cr
  1337.   \.{ { }\\vskip 15pt \\centerline\{(Version 4)\}{ }\\vfill\}}\cr}$$
  1338. Redefining \.{\\rheader}, which is the headline for right-hand pages,
  1339. suffices in this case to put the desired information at the top of the
  1340. contents page.
  1341. \point 9. Data for the table of contents is written to a file that
  1342. is read after the indexes have been \TeX ed; there's one line of data
  1343. for every starred module. For example, when Appendix~D was being generated,
  1344. a file \.{CONTENTS.TEX} containing
  1345. $$\lpile{\.{\\Z \{{ }Introduction\}\{1\}\{16\}}\cr
  1346.   \.{\\Z \{{ }The character set\}\{11\}\{19\}}\cr}$$
  1347. and similar lines was created. The \.{\\topofcontents} macro could
  1348. redefine \.{\\Z} so that the information appears in another format.
  1349. \point 10. Sometimes it is necessary or desirable to divide the output of
  1350. \.{WEAVE} into subfiles that can be processed separately. For example,
  1351. the listing of \TeX\ runs to more than 500 pages, and that is enough to
  1352. exceed the capacity of many printing devices and/or their software.
  1353. When an extremely large job isn't cut into smaller pieces, the entire
  1354. process might be spoiled by a single error of some sort, making it
  1355. necessary to start everything over.
  1356. Here's a safe way to break a woven file into three parts:
  1357. Say the pieces are $\alpha$,
  1358. $\beta$, and $\gamma$, where each piece begins with a starred module.
  1359. All macros should be defined in the opening limbo section of $\alpha$,
  1360. and copies of this \TeX\ code should be placed at the
  1361. beginning of $\beta$ and of $\gamma$. In order to process the parts
  1362. separately, we need to take care of two things: The starting page
  1363. numbers of $\beta$ and $\gamma$ need to be set up properly, and
  1364. the table of contents data from all three runs needs to be
  1365. accumulated.
  1366. The \.{webmac} macros include two control sequences \.{\\contentsfile} and
  1367. \.{\\readcontents} that facilitate the necessary processing.  We include
  1368. `\.{\\def\\contentsfile\{CONT1\}}' in the limbo section of $\alpha$, and
  1369. we include `\.{\\def\\contentsfile\{CONT2\}}' in the limbo section of
  1370. $\beta$; this causes \TeX\ to write the contents data for $\alpha$ and $\beta$
  1371. into \.{CONT1.TEX} and \.{CONT2.TEX}. Now in $\gamma$ we say
  1372. $$\.{\\def\\readcontents\{\\input CONT1 \\input CONT2 \\input CONTENTS\}};$$
  1373. this brings in the data from all three pieces, in the proper order.
  1374. However, we still need to solve the page-numbering problem. One way to
  1375. do it is to include the following in the limbo material for $\beta$:
  1376. $$\lpile{\.{\\message\{Please type the last page number of part 1: \}}\cr
  1377.   \.{\\read -1 to \\temp \\pageno=\\temp \\advance\\pageno by 1}\cr}$$
  1378. Then you simply provide the necessary data when \TeX\ requests
  1379. it; a similar construction is used at the beginning of $\gamma$.
  1380. This method can, of course, be used to divide a woven file into
  1381. any number of pieces.
  1382. \point 11. Sometimes it is nice to include things in the index that are
  1383. typeset in a special way. For example, we might want to have an
  1384. index entry for `\TeX'. \.{WEAVE} provides two simple ways to
  1385. typeset an index entry (unless the entry is an identifier or a reserved word):
  1386. `\.{@\^}' gives roman type, and `\.{@.}' gives typewriter type.
  1387. But if we try to typeset `\TeX' in roman type by saying, e.g.,
  1388. `\.{@\^\\TeX@>}', the backslash character gets in the way,
  1389. and this entry wouldn't appear in the index with the T's.
  1390. The solution is to use the `\.{@:}' feature, declaring a macro that
  1391. simply removes a sort key as follows:
  1392. $$\.{\\def\\9\#1\{\}}$$
  1393. Now you can say, e.g., `\.{@:TeX\}\{\\TeX@>}' in your \.{WEB} file; \.{WEAVE}
  1394. puts it into the index alphabetically, based on the sort key, and
  1395. produces the macro call `\.{\\9\{TeX\}\{\\TeX\}}' which will ensure that
  1396. the sort key isn't printed.
  1397. A similar idea can be used to insert hidden material into module
  1398. names so that they are alphabetized in whatever way you might wish.
  1399. Some people call these tricks ``special refinements''; others call
  1400. them ``kludges''.
  1401. \point 12. The control sequence \.{\\modno} is set to the number of the
  1402. module being typeset.
  1403. \point 13. If you want to list only the modules that have changed,
  1404. together with the index, put the command `\.{\\let\\maybe=\\iffalse}' in
  1405. the limbo section before the first module of your \.{WEB} file. It's
  1406. customary to make this the first change in your change file.
  1407. \point 14. To get output in languages other than English, redefine the
  1408. macros \.{\\A}, \.{\\As}, \.{\\ET}, \.{\\ETs}, \.{\\U}, \.{\\Us},
  1409. \.{\\ch}, \.{\\fin}, and \.{\\con}. \.{WEAVE} itself need not be changed.
  1410. \vfill\eject
  1411. \def\runninghead{APPENDIX H --- GETTING STARTED}
  1412. \section Appendix H: Installing the \.{WEB} system.
  1413. Suppose you want to use the \.{WEB} programs on your computer, and suppose
  1414. that you can't simply borrow them from somebody else who has the same
  1415. kind of machine. Here's what to do:
  1416. \yskip
  1417. \def\step(#1){\par\hangindent 2em\noindent\hbox to 2em{\hfil(#1) }\ignorespaces}
  1418. \step(1) Get a tape that contains the files \.{WEAVE.WEB}, \.{TANGLE.WEB},
  1419. \.{TANGLE.PAS}, and \.{WEBMAC.TEX}. The tape will probably also contain an
  1420. example change file \.{TANGLE.CH}.
  1421. \step(2) Look at the sections of \.{TANGLE} that are listed under ``system
  1422. dependencies'' in the index of Appendix~E above, and figure out what changes
  1423. (if any) will be needed for your system.
  1424. \step(3) Make a change file \.{TANGLE.CH} that contains the changes of~(2);
  1425. do not change your copy of \.{TANGLE.WEB}, leave it intact. (The
  1426. rules for change files are explained at the end of the manual just before
  1427. the appendices; you may want to look at the example change file that
  1428. arrived with your copy of \.{TANGLE.WEB}. It's also a good idea to
  1429. define all the ``switches'' like \&{debug} and \&{gubed} to be null in your
  1430. first change files; then you can sure that your compiler will handle
  1431. all of the code.)
  1432. \step(4) Make the changes of (2) in your copy of \.{TANGLE.PAS}. (If these
  1433. changes are extensive, you might be better off finding some computer that
  1434. that already has \.{TANGLE} running, and making the new \.{TANGLE.PAS}
  1435. from \.{TANGLE.WEB} and your \.{TANGLE.CH}.)
  1436. \step(5) Use your \PASCAL\ compiler to convert your copy of \.{TANGLE.PAS}
  1437. to a running program \.{TANGLE}.
  1438. \step(6) Check your changes as follows: Run \.{TANGLE} on \.{TANGLE.WEB}
  1439. and your \.{TANGLE.CH}, yielding $\.{TANGLE.PAS}'$; make a running
  1440. program $\.{TANGLE}'$ by applying \PASCAL\ to
  1441. $\.{TANGLE.PAS}'$; run $\.{TANGLE}'$ on \.{TANGLE.WEB} and
  1442. your \.{TANGLE.CH}, yielding $\.{TANGLE.PAS}''$; and check
  1443. that $\.{TANGLE.PAS}''$ is identical to
  1444. $\.{TANGLE.PAS}'$. Once this test has been passed, you have got a
  1445. working \.{TANGLE} program.
  1446. \step(7) Make a change file \.{WEAVE.CH} analogous to (3), but this time
  1447. consider the system-dependent parts of \.{WEAVE} that are listed in
  1448. the index to Appendix~D.
  1449. \step(8) Run \.{TANGLE} on \.{WEAVE.WEB} and your \.{WEAVE.CH}, obtaining
  1450. \.{WEAVE.PAS}.
  1451. \step(9) Use \PASCAL\ on \.{WEAVE.PAS} to make a running \.{WEAVE} program.
  1452. \step(10) Run \.{WEAVE} on \.{TANGLE.WEB} and \.{TANGLE.CH} to produce
  1453. \.{TANGLE.TEX}.
  1454. \step(11) Run \TeX\ on \.{TANGLE.TEX}, obtaining a listing analogous to
  1455. Appendix~E. This listing will incorporate your changes.
  1456. \step(12) Run \.{WEAVE} on \.{WEAVE.WEB} and your \.{WEAVE.CH} to produce
  1457. \.{WEAVE.TEX}.
  1458. \step(13) Run \TeX\ on \.{WEAVE.TEX}, obtaining a listing analogous to
  1459. Appendix~D that incorporates your changes.
  1460. \yskip\noindent
  1461. This description assumes that you already have a working \TeX82 system.
  1462. But what if you don't have \TeX82? Then you start with a tape that also
  1463. contains \.{TEX.WEB} and \.{plain.tex}, and you refer to a hardcopy
  1464. listing of the \TeX82 program corresponding to \.{TEX.WEB}. Between steps
  1465. (10) and (11) you do the following:
  1466. \yskip
  1467. \def\substep(10.#1){\par\hangindent 4em\noindent
  1468.   \hbox to 4em{\hfil(10.#1) }\ignorespaces}
  1469. \substep(10.1) Make a change file \.{TEX.CH} to fix the system dependent
  1470. portions of \.{TEX.WEB}, in a manner analogous to step~(2). Since \TeX\ is
  1471. a much more complex program than \.{WEAVE} or \.{TANGLE}, there are more
  1472. system-dependent features to think about, but by now you will be good at
  1473. making such modifications. Do not make any changes to \.{TEX.WEB}.
  1474. \substep(10.2) Make an almost-copy of your \.{TEX.CH} called \.{INITEX.CH};
  1475. this one will have the `\&{init}' and `\&{tini}' macros redefined in order
  1476. to make the initialization version of \TeX. It also might have smaller
  1477. font memory and dynamic memory areas, since \.{INITEX} doesn't need as
  1478. much memory for such things; by setting the memory smaller in \.{INITEX},
  1479. you guarantee that the production system will have a ``cushion.''
  1480. \substep(10.3) Run \.{TANGLE} on \.{TEX.WEB} and \.{INITEX.CH}, obtaining
  1481. \.{INITEX.PAS} and \.{TEX.POOL}.
  1482. \substep(10.4) Run \PASCAL\ on \.{INITEX.PAS}, obtaining \.{INITEX}.
  1483. \substep(10.5) Run \.{INITEX} on \.{TEX.POOL}, during which run you type
  1484. `\.{plain}' and `\.{\\dump}'. This will produce a file \.{plain.fmt}
  1485. containing the data needed to initialize \TeX's memory.
  1486. \substep(10.6) Run \.{TANGLE} on \.{TEX.WEB} and the \.{TEX.CH} of (10.1),
  1487. obtaining \.{TEX.PAS}.
  1488. \substep(10.7) Run \PASCAL\ on \.{TEX.PAS}, obtaining \.{VIRTEX}.
  1489. \substep(10.8) If your operating system supports programs whose core images
  1490. have been saved, run \.{VIRTEX}, type `\.{\&plain}', then save the core image
  1491. and call it \TeX. Otherwise, \.{VIRTEX} will be your \TeX, and it will
  1492. read `\.{plain.fmt}' (or some other \.{fmt} file) each time you run.
  1493. \yskip
  1494. This 21-step process may seem long, but it is actually an oversimplification,
  1495. since you also need fonts and a way to print the device-independent files
  1496. that \TeX\ spews out. On the other hand, the total number of steps is not
  1497. quite so large when you consider that \.{TANGLE}-followed-by-\PASCAL\ and
  1498. \.{WEAVE}-followed-by-\TeX\ may be regarded as single operations.
  1499. If you have only the present report, not a tape, you will have to prepare
  1500. files \.{WEAVE.WEB} and \.{TANGLE.WEB} by hand, typing them into the
  1501. computer by following Appendices D and E. Then you have to simulate the
  1502. behavior of \.{TANGLE} by converting \.{TANGLE.WEB} manually into
  1503. \.{TANGLE.PAS}; with a good text editor this takes about six hours. Then
  1504. you have to correct errors that were made in all this hand work; but still
  1505. the whole project is not impossibly difficult, because in fact the entire
  1506. development of \.{WEAVE} and \.{TANGLE} (including the writing of the
  1507. programs and this manual) took less than two months of work.
  1508. \vfill\end
  1509.